码迷,mamicode.com
首页 > Windows程序 > 详细

不包含SDK头文件, 补全API定义

时间:2016-02-12 22:05:15      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:

[cpp] view plain copy
 
 技术分享技术分享
  1. /// @file main.cpp  
  2. /// @brief 不包含SDK头文件, 补全API定义  
  3.   
  4. #ifdef __cplusplus  
  5. extern "C" {  
  6. #endif /* __cplusplus */  
  7.       
  8. #define DECLARE_HANDLE(name) struct name##__ { int unused; }; typedef struct name##__* name  
  9. DECLARE_HANDLE(HWND);  
  10. DECLARE_HANDLE(HINSTANCE);  
  11.   
  12. #define WINAPI __stdcall  
  13. typedef char* LPSTR;  
  14. typedef const char* LPCSTR;  
  15. typedef unsigned int UINT;  
  16. #define NULL 0  
  17. #define MB_OK 0  
  18.   
  19. /// MessageBoxA 是CRT函数  
  20. __declspec(dllimport)  
  21. int  
  22. WINAPI  
  23. MessageBoxA(  
  24.             HWND hWnd ,  
  25.             LPCSTR lpText,  
  26.             LPCSTR lpCaption,  
  27.             UINT uType);  
  28.   
  29. #define MessageBox MessageBoxA  
  30.   
  31. #ifdef __cplusplus  
  32. }  
  33. #endif  /* __cplusplus */  
  34.   
  35. int WINAPI WinMain(HINSTANCE hInstance,  
  36.         HINSTANCE hPrevInstance,  
  37.         LPSTR     lpCmdLine,  
  38.         int       nCmdShow) {  
  39.     MessageBox(NULL, "test", "main", MB_OK);  
  40.   
  41.     return 0;  
  42. }  

http://blog.csdn.net/lostspeed/article/details/50590304

不包含SDK头文件, 补全API定义

标签:

原文地址:http://www.cnblogs.com/findumars/p/5187266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!