不包含SDK头文件, 补全API定义
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不包含SDK头文件, 补全API定义相关的知识,希望对你有一定的参考价值。
- /// @file main.cpp
- /// @brief 不包含SDK头文件, 补全API定义
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- #define DECLARE_HANDLE(name) struct name##__ { int unused; }; typedef struct name##__* name
- DECLARE_HANDLE(HWND);
- DECLARE_HANDLE(HINSTANCE);
- #define WINAPI __stdcall
- typedef char* LPSTR;
- typedef const char* LPCSTR;
- typedef unsigned int UINT;
- #define NULL 0
- #define MB_OK 0
- /// MessageBoxA 是CRT函数
- __declspec(dllimport)
- int
- WINAPI
- MessageBoxA(
- HWND hWnd ,
- LPCSTR lpText,
- LPCSTR lpCaption,
- UINT uType);
- #define MessageBox MessageBoxA
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
- int WINAPI WinMain(HINSTANCE hInstance,
- HINSTANCE hPrevInstance,
- LPSTR lpCmdLine,
- int nCmdShow) {
- MessageBox(NULL, "test", "main", MB_OK);
- return 0;
- }
http://blog.csdn.net/lostspeed/article/details/50590304
以上是关于不包含SDK头文件, 补全API定义的主要内容,如果未能解决你的问题,请参考以下文章