Searched defs:hWnd (Results 1 - 25 of 48) sorted by relevance

12

/vbox/src/VBox/Frontends/VirtualBox/src/platform/win/
H A DVBoxUtils-win.cpp25 BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam);
31 BOOL CALLBACK NativeWindowSubsystem::EnumWindowsProc(HWND hWnd, LPARAM /* lParam */) argument
34 if (!hWnd)
38 if (!IsWindowVisible(hWnd))
42 LONG uStyle = GetWindowLong(hWnd, GWL_STYLE);
48 LONG uExtendedStyle = GetWindowLong(hWnd, GWL_EXSTYLE);
55 GetWindowRect(hWnd, &rect);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dswapchain_base.c193 HWND hWnd; local
195 hWnd = This->device_window;
197 hWnd = This->win_handle;
200 hDC = GetDC(hWnd);
202 ReleaseDC(hWnd, hDC);
211 HWND hWnd; local
213 hWnd = This->device_window;
215 hWnd = This->win_handle;
218 hDC = GetDC(hWnd);
220 ReleaseDC(hWnd, hD
[all...]
H A Dclipper.c94 static HRESULT WINAPI IWineD3DClipperImpl_SetHwnd(IWineD3DClipper *iface, DWORD Flags, HWND hWnd) argument
98 TRACE("(%p)->(0x%08x,%p)\n", This, Flags, hWnd);
105 This->hWnd = hWnd;
115 if (This->hWnd)
117 HDC hDC = GetDCEx(This->hWnd, NULL, DCX_WINDOW);
140 ReleaseDC(This->hWnd, hDC);
169 *hwnd = This->hWnd;
H A Dswapchain.c49 IWineD3DSwapChainImpl * swapchain_find(IWineD3DDeviceImpl *pDevice, HWND hWnd) argument
55 if (pSwapchain->win_handle == hWnd)
H A Dvboxext.c89 NULL /* HWND hWnd */,
98 0 /*HWND hWnd*/,
400 HWND hWnd; member in struct:VBOXEXT_GETDC_CB
407 pData->hDC = GetDC(pData->hWnd);
412 HWND hWnd; member in struct:VBOXEXT_RELEASEDC_CB
420 pData->ret = ReleaseDC(pData->hWnd, pData->hDC);
423 HDC VBoxExtGetDC(HWND hWnd) argument
427 Data.hWnd = hWnd;
440 int VBoxExtReleaseDC(HWND hWnd, HD argument
551 HWND hWnd = CreateWindowEx (WS_EX_TOOLWINDOW, local
579 vboxExtWndDoDestroy(HWND hWnd, HDC hDC) argument
602 HWND hWnd; member in struct:VBOXEXTWND_CREATE_INFO
611 HWND hWnd; member in struct:VBOXEXTWND_DESTROY_INFO
640 VBoxExtWndDestroy(HWND hWnd, HDC hDC) argument
[all...]
H A Dcontext.c752 HWND hWnd = WindowFromDC(swapchain->hDC); local
753 if (hWnd != swapchain->win_handle)
755 ERR("Unexpected swapchain for dc %p window expected %p, but was %p.\n", swapchain->hDC, swapchain->win_handle, hWnd);
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxHelpers.cpp251 int hlpShowBalloonTip(HINSTANCE hInst, HWND hWnd, UINT uID, argument
259 niData.hWnd = hWnd;
H A DVBoxDnD.h314 LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
367 HWND hWnd; member in class:VBoxDnDWnd
H A DVBoxDnD.cpp62 static LRESULT CALLBACK vboxDnDWndProcInstance(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
63 static LRESULT CALLBACK vboxDnDWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
68 hWnd(NULL),
209 pThis->hWnd =
219 if (!pThis->hWnd)
228 SetWindowPos(pThis->hWnd, HWND_TOPMOST, -200, -200, 0, 0,
231 LogFlowFunc(("Proxy window created, hWnd=0x%x\n", pThis->hWnd));
233 LogFlowFunc(("Debug proxy window created, hWnd=0x%x\n", pThis->hWnd));
347 WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
1463 vboxDnDWndProcInstance(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
1480 vboxDnDWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dbg/
H A DtstMvWnd.cpp75 HWND hWnd = CreateWindowEx (0 /*WS_EX_CLIENTEDGE*/, local
84 Assert(hWnd);
85 if (hWnd)
87 *phWnd = hWnd;
103 HWND hWnd = (HWND)pvUser; local
105 BOOL bRc = GetWindowRect(hWnd, &Rect);
109 bRc = SetWindowPos(hWnd, HWND_TOPMOST,
124 bRc = SetWindowPos(hWnd, HWND_TOPMOST,
148 HWND hWnd; local
149 HRESULT hr = tstMvWndCreate(200, 200, &hWnd);
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnectionWin.cpp85 ipcThreadWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
115 SendMessageA(ipcDaemonHwnd, WM_COPYDATA, (WPARAM) hWnd, (LPARAM) &cd);
135 return DefWindowProc(hWnd, uMsg, wParam, lParam);
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcdWin.cpp228 WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
267 SendMessage(hWndDest, WM_COPYDATA, (WPARAM) hWnd, (LPARAM) &cd);
294 return DefWindowProc(hWnd, uMsg, wParam, lParam);
/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_init.c98 HWND hWnd; local
103 hWnd = CreateWindowEx(pCS->dwExStyle, pCS->lpszName, pCS->lpszClass, pCS->style,
107 pWindow->hWnd = hWnd;
115 DestroyWindow(((VBOX_RENDERSPU_DESTROY_WINDOW*) msg.lParam)->hWnd);
H A Drenderspu_wgl.c399 /*DestroyWindow( window->hWnd );*/
401 vrdw.hWnd = window->hWnd;
413 window->hWnd = NULL;
423 MainWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) argument
430 WindowInfo *pWindow = (WindowInfo *)GetWindowLongPtr(hWnd, GWLP_USERDATA);
442 hDC = BeginPaint(pWindow->hWnd, &Paint);
450 bRc = EndPaint(pWindow->hWnd, &Paint);
490 crDebug("Render SPU: caught WM_DESTROY for our window %x", hWnd);
498 return DefWindowProc( hWnd, uMs
[all...]
H A Drenderspu.h118 HWND hWnd; member in struct:WindowInfo
365 HWND hWnd; /* handle to window to destroy */ member in struct:_VBOX_RENDERSPU_DESTROY_WINDOW
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ddk/
H A Dimm.h36 HWND hWnd; member in struct:_tagINPUTCONTEXT
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Drpcasync.h147 HWND hWnd; member in struct:_RPC_ASYNC_NOTIFICATION_INFO::__anon13770
/vbox/src/VBox/Additions/common/crOpenGL/
H A Dstub.h176 HWND hWnd; member in struct:window_info_t
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ddk/
H A Dimm.h36 HWND hWnd; member in struct:_tagINPUTCONTEXT
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Drpcasync.h140 HWND hWnd; member in struct:_RPC_ASYNC_NOTIFICATION_INFO::__anon1135
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dswapchain.c132 struct wined3d_swapchain * swapchain_find(struct wined3d_device * device, HWND hWnd) argument
138 if (swapchain->win_handle == hWnd)
H A Dvboxext.c89 NULL /* HWND hWnd */,
98 0 /*HWND hWnd*/,
400 HWND hWnd; member in struct:VBOXEXT_GETDC_CB
407 pData->hDC = GetDC(pData->hWnd);
412 HWND hWnd; member in struct:VBOXEXT_RELEASEDC_CB
420 pData->ret = ReleaseDC(pData->hWnd, pData->hDC);
423 HDC VBoxExtGetDC(HWND hWnd) argument
427 Data.hWnd = hWnd;
440 int VBoxExtReleaseDC(HWND hWnd, HD argument
549 HWND hWnd = CreateWindowEx (WS_EX_TOOLWINDOW, local
577 vboxExtWndDoDestroy(HWND hWnd, HDC hDC) argument
600 HWND hWnd; member in struct:VBOXEXTWND_CREATE_INFO
609 HWND hWnd; member in struct:VBOXEXTWND_DESTROY_INFO
638 VBoxExtWndDestroy(HWND hWnd, HDC hDC) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/
H A DVBoxDispD3D.h174 /* a read-only hWnd we receive from wine
178 HWND hWnd; member in struct:VBOXWDDMDISP_SWAPCHAIN
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dstrmbase.h379 HWND hWnd; member in struct:tagBaseWindow
/vbox/src/VBox/HostDrivers/VBoxUSB/win/lib/
H A DVBoxUsbLib-win.cpp74 HWND hWnd; member in struct:VBOXUSBGLOBALSTATE
1252 Assert(g_VBoxUsbGlobal.hWnd == NULL);
1253 g_VBoxUsbGlobal.hWnd = NULL;
1271 g_VBoxUsbGlobal.hWnd = CreateWindowEx(WS_EX_TOOLWINDOW | WS_EX_TRANSPARENT | WS_EX_TOPMOST,
1284 if (g_VBoxUsbGlobal.hWnd)
1287 SetWindowPos(g_VBoxUsbGlobal.hWnd, HWND_TOPMOST, -200, -200, 0, 0,
1303 DestroyWindow(g_VBoxUsbGlobal.hWnd);
1457 if (g_VBoxUsbGlobal.hWnd)
1565 bRc = PostMessage(g_VBoxUsbGlobal.hWnd, WM_QUIT, 0, 0);
1566 AssertMsg(bRc, ("PostMessage for hWnd faile
[all...]

Completed in 110 milliseconds

12