Lines Matching refs:hWnd
104 void NotifyListener( HWND hWnd ) in NotifyListener() argument
123 nid.hWnd = hWnd; in NotifyListener()
252 HWND hWnd; in InitInstance() local
256 hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, in InitInstance()
259 if (!hWnd) in InitInstance()
265 ShowWindow(hWnd, nCmdShow); in InitInstance()
266 UpdateWindow(hWnd); in InitInstance()
281 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
348 nid.hWnd = hWnd; in WndProc()
355 NotifyListener( hWnd ); in WndProc()
358 SetTimer(hWnd, UPDATE_TIMER, 3000, NULL); in WndProc()
377 SetForegroundWindow( hWnd ); in WndProc()
379 pt.x, pt.y, hWnd, NULL); in WndProc()
381 PostMessage(hWnd, NULL, 0, 0); in WndProc()
386 NotifyListener( hWnd ); in WndProc()
389 DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About); in WndProc()
392 DestroyWindow(hWnd); in WndProc()
404 NotifyListener( hWnd ); in WndProc()
415 nid.hWnd = hWnd; in WndProc()
422 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc()