mirror of https://github.com/Wind4/vlmcsd
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
369 B
C
22 lines
369 B
C
#ifndef VLMCS_H_
|
|
#define VLMCS_H_
|
|
|
|
#ifndef CONFIG
|
|
#define CONFIG "config.h"
|
|
#endif // CONFIG
|
|
#include CONFIG
|
|
|
|
#if defined(USE_MSRPC) && defined(_WIN32)
|
|
#include <winsock2.h>
|
|
#endif // defined(USE_MSRPC) && defined(_WIN32)
|
|
#include "types.h"
|
|
|
|
#if MULTI_CALL_BINARY < 1
|
|
#define client_main main
|
|
#else
|
|
int client_main(int argc, CARGV argv);
|
|
#endif
|
|
|
|
#endif /* VLMCS_H_ */
|
|
|