StdAfx.h 1012 B

123456789101112131415161718192021222324252627282930313233343536
  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. #if !defined(AFX_STDAFX_H__57E33BB1_2EB9_4117_9771_A9A7DAC6546A__INCLUDED_)
  6. #define AFX_STDAFX_H__57E33BB1_2EB9_4117_9771_A9A7DAC6546A__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #ifndef _CRT_SECURE_NO_WARNINGS
  11. #define _CRT_SECURE_NO_WARNINGS
  12. #endif // !_CRT_SECURE_NO_WARNINGS
  13. // Insert your headers here
  14. #ifndef WIN32_LEAN_AND_MEAN
  15. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  16. #endif // !WIN32_LEAN_AND_MEAN
  17. #ifndef _WIN32_WINNT
  18. #define _WIN32_WINNT 0x0520
  19. #endif
  20. #define WINVER 0x0520
  21. #if defined(_MSC_VER)
  22. #include <WinSock2.h>
  23. #include <windows.h>
  24. #endif //_MSC_VER
  25. //{{AFX_INSERT_LOCATION}}
  26. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  27. #endif // !defined(AFX_STDAFX_H__57E33BB1_2EB9_4117_9771_A9A7DAC6546A__INCLUDED_)