stdafx.h
上传用户:laohuji888
上传日期:2021-04-13
资源大小:2075k
文件大小:1k
源码类别:

组合框控件

开发平台:

Visual C++

  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. // Modify the following defines if you have to target a platform prior to the ones specified below.
  7. // Refer to MSDN for the latest info on corresponding values for different platforms.
  8. #ifndef WINVER // Allow use of features specific to Windows XP or later.
  9. #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
  10. #endif
  11. #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.                   
  12. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
  13. #endif
  14. #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
  15. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  16. #endif
  17. #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
  18. #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
  19. #endif
  20. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  21. // Windows Header Files:
  22. #include <windows.h>
  23. // C RunTime Header Files
  24. #include <stdlib.h>
  25. #include <malloc.h>
  26. #include <memory.h>
  27. #include <tchar.h>
  28. // TODO: reference additional headers your program requires here