stdafx.h 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #pragma once
  6. #include "targetver.h"
  7. #if 0
  8. #if (defined(_DEBUG) || defined(DEBUG))
  9. #ifndef _CRTDBG_MAP_ALLOC
  10. #define _CRTDBG_MAP_ALLOC
  11. #endif
  12. #endif
  13. #endif
  14. #ifndef WIN32_LEAN_AND_MEAN
  15. #define WIN32_LEAN_AND_MEAN
  16. #endif
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19. #include <assert.h>
  20. #ifdef _WIN32
  21. #include <WinSock2.h>
  22. #include <Mmsystem.h>
  23. #include <windows.h>
  24. #include <crtdbg.h>
  25. #include <process.h>
  26. #endif // _WIN32
  27. #pragma warning( disable: 4127 )
  28. #include "AutoArray.h"
  29. #include "SimpleString.h"
  30. #include "SmartPointer.h"
  31. // TODO: reference additional headers your program requires here