Changeset 85121 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r84142 r85121 199 199 200 200 static LRESULT CALLBACK vboxClipboardSvcWinWndProcMain(PSHCLCONTEXT pCtx, 201 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) 201 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) RT_NOTHROW_DEF 202 202 { 203 203 AssertPtr(pCtx); … … 402 402 * Static helper function for having a per-client proxy window instances. 403 403 */ 404 static LRESULT CALLBACK vboxClipboardSvcWinWndProcInstance(HWND hWnd, UINT uMsg, 405 WPARAM wParam, LPARAM lParam) 404 static LRESULT CALLBACK vboxClipboardSvcWinWndProcInstance(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) RT_NOTHROW_DEF 406 405 { 407 406 LONG_PTR pUserData = GetWindowLongPtr(hWnd, GWLP_USERDATA); … … 419 418 * proxy window instance. 420 419 */ 421 static LRESULT CALLBACK vboxClipboardSvcWinWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) 420 static LRESULT CALLBACK vboxClipboardSvcWinWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) RT_NOTHROW_DEF 422 421 { 423 422 /* Note: WM_NCCREATE is not the first ever message which arrives, but
Note:
See TracChangeset
for help on using the changeset viewer.