stdafx.h 672 B

123456789101112131415161718192021222324252627282930313233
  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. #include <winpr/winsock.h>
  15. #ifndef WIN32_LEAN_AND_MEAN
  16. #define WIN32_LEAN_AND_MEAN
  17. #endif
  18. #include <winpr/windows.h>
  19. #include <stdlib.h>
  20. #include <stdio.h>
  21. #include <assert.h>
  22. #pragma warning( disable: 4127 )
  23. #include "AutoArray.h"
  24. #include "SimpleString.h"
  25. #include "SmartPointer.h"
  26. // TODO: reference additional headers your program requires here