1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | int CALLBACK
WinMain(HINSTANCE Instance,
HINSTANCE PrevInstance,
LPSTR CommandLine,
int ShowCode)
{
...
while(GlobalRunning)
{
...
if(!GlobalPause)
{
...
HDC DeviceContext = GetDC(Window);
Win32DisplayBufferInWindow(&GlobalBackbuffer, DeviceContext,
Dimension.Width, Dimension.Height);
ReleaseDC(Window, DeviceContext);
...
}
...
}
...
}
|
1 2 3 | if(WindowHandle){
...
}
|