5 - 9
// ---------------------------------------------------------------------------
// WinMain
// ---------------------------------------------------------------------------
int CALLBACK WinMain(
HINSTANCE hInst, HINSTANCE hInstPrev, LPSTR lpstrCmdLine, int cmdShow
)
{
MSG msg;
WNDCLASS wc;
theInstance = hInst;
// Register the window class if this is the first instance.
if( !hInstPrev )
{
wc.lpszMenuName= NULL;
wc.lpszClassName= "TEST";
wc.hInstance= hInst;
wc.hIcon= NULL;
wc.hCursor= NULL;
wc.hbrBackground= (HBRUSH)(COLOR1);
wc.style= 0;
wc.lpfnWndProc= WndProc;
wc.cbClsExtra= 0;
wc.cbWndExtra= 0;
if( !RegisterClass( &wc ) )
return 0;
}
// Create the main window
if( !(theWnd = CreateWindowEx(
WS_EX_TOPMOST, "TEST", "Sign on the pad and hit any key when done",
WS_OVERLAPPED | WS_SYSMENU, CW_USEDEFAULT, CW_USEDEFAULT, 375, 225,
NULL, NULL, hInst, NULL ))
)
return 0;
Summary of Contents for PadCom TT1500
Page 1: ... PadCom Point of Sale Terminal Control Library U s e r s G u i d e ...
Page 88: ...4 2 ...
Page 129: ......
Page 130: ......
Page 131: ......
Page 132: ... PadCom UG Rev A 4619 Jordan Road P O Box 187 Skaneateles Falls New York 13153 0187 ...