vlmcs.h 369 B

123456789101112131415161718192021
  1. #ifndef VLMCS_H_
  2. #define VLMCS_H_
  3. #ifndef CONFIG
  4. #define CONFIG "config.h"
  5. #endif // CONFIG
  6. #include CONFIG
  7. #if defined(USE_MSRPC) && defined(_WIN32)
  8. #include <winsock2.h>
  9. #endif // defined(USE_MSRPC) && defined(_WIN32)
  10. #include "types.h"
  11. #if MULTI_CALL_BINARY < 1
  12. #define client_main main
  13. #else
  14. int client_main(int argc, CARGV argv);
  15. #endif
  16. #endif /* VLMCS_H_ */