我正在学习 C++。我想知道是否有任何 C++ 应用程序具有HWND
. 示例波纹管应用程序,没有创建窗口。如果有,我怎样才能得到它的 HWND?非常感谢!
#include <windows.h>
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLine, int iCmdShow )
{
MSG msg;
while( GetMessage( &msg, NULL, 0, 0 ) )
{
TranslateMessage( &msg );
DispatchMessage( &msg );
}
}