home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
borllexp
/
blx_1_2
/
winapp.cpp
< prev
next >
Wrap
Text File
|
1991-05-02
|
421b
|
21 lines
// winapp.cpp
#include<windows.h>
#include"winapp.h"
HANDLE WinApp::hInstance;
HANDLE WinApp::hPrevInstance;
LPSTR WinApp::lpszCmdLine;
int WinApp::nCmdShow;
int WinApp::MessageLoop(void) // default message loop processing
{
MSG msg;
while(GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
}