-2

我是 C++ GUI 新手,想了解更多

#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
    LPSTR lpCmdLine, int nCmdShow)
{
    MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
    return 0;
}

有人会好心解释做什么HINSTANCE hInstance, HINSTANCE hPrevInstance,PSTR lpCmdLine, int nCmdShow吗?

4

1 回答 1

0

在此处查找信息:
theForger 的 Win32 API 编程教程 - 入门

于 2012-07-16T11:40:46.940 回答