KSGServer.h 399 B

1234567891011121314151617181920
  1. #ifndef KSGServer_H
  2. #define KSGServer_H
  3. #ifdef _DEBUG
  4. #ifndef _LTMDB
  5. #define _CRTDBG_MAP_ALLOC
  6. #include <stdlib.h>
  7. #include <crtdbg.h>
  8. #define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
  9. #define new DEBUG_CLIENTBLOCK
  10. #define _LTMDB
  11. #endif
  12. #endif
  13. char *getMainServerIp();
  14. unsigned short getMainServerPort();
  15. unsigned int getKlientId();
  16. char getSchlüssel( char **schlüssel );
  17. #endif