initial commit
[xdos] / src / server.h
1 #ifndef SERVER_H_
2 #define SERVER_H_
3
4 /* if buf is null, returns the size required for the server info data.
5  * if buf is not null and sz is less than the required size, returns -1.
6  * otherwise fills the buffer with the server info data and returns the size
7  */
8 int server_info(void *buf, int sz);
9
10 #endif  /* SERVER_H_ */