Lines Matching refs:hWnd
67 void ShowAvailableClipboardFormats( HWND hWnd, HDC hdc, PAINTSTRUCT ps, RECT rcWnd );
68 void ClearClipboardContent( HWND hWnd );
197 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
211 ClearClipboardContent( hWnd ); in WndProc()
221 SwitchMenuState( hWnd ); in WndProc()
222 RegisterClipboardViewer( IsClipboardViewer( hWnd ) ); in WndProc()
226 DestroyWindow( hWnd ); in WndProc()
230 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
235 hdc = BeginPaint (hWnd, &ps); in WndProc()
238 GetClientRect( hWnd, &rt ); in WndProc()
242 ShowAvailableClipboardFormats( hWnd, hdc, ps, rt ); in WndProc()
251 EndPaint( hWnd, &ps ); in WndProc()
259 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
312 void ShowAvailableClipboardFormats( HWND hWnd, HDC hdc, PAINTSTRUCT ps, RECT rcWnd ) in ShowAvailableClipboardFormats() argument
314 if ( !OpenClipboard( hWnd ) ) in ShowAvailableClipboardFormats()
331 void ClearClipboardContent( HWND hWnd ) in ClearClipboardContent() argument
333 if ( OpenClipboard( hWnd ) ) in ClearClipboardContent()