Home | History | Annotate | Download | only in apps

Lines Matching refs:hwnd

66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
73 HWND hwnd;
99 hwnd = CreateWindow(appname, OPENSSL_VERSION_TEXT,
103 ShowWindow(hwnd, iCmdShow);
104 UpdateWindow(hwnd);
116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
126 hdc = BeginPaint(hwnd, &ps);
127 GetClientRect(hwnd, &rect);
130 EndPaint(hwnd, &ps);
142 MessageBox(hwnd, "Couldn't write random file!",
147 return DefWindowProc(hwnd, iMsg, wParam, lParam);