Changeset 80845 in vbox for trunk/include/VBox/GuestHost/SharedClipboard-win.h
- Timestamp:
- Sep 17, 2019 9:05:21 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133415
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-win.h
r80664 r80845 30 30 #endif 31 31 32 #include <iprt/critsect.h> 32 33 #include <iprt/types.h> 33 34 #include <iprt/win/windows.h> … … 62 63 63 64 /** Reports clipboard formats. */ 64 #define SHCL_WIN_WM_REPORT_FORMATS WM_USER65 #define SHCL_WIN_WM_REPORT_FORMATS WM_USER 65 66 /** Reads data from the clipboard and sends it to the destination. */ 66 #define SHCL_WIN_WM_READ_DATA WM_USER + 167 #define SHCL_WIN_WM_READ_DATA WM_USER + 1 67 68 #ifdef VBOX_WITH_SHARED_CLIPBOARD_URI_LIST 68 /** Starts a reading transfer from the guest. */ 69 # define SHCL_WIN_WM_URI_START_READ WM_USER + 2 70 /** Starts a writing transfer to the guest. */ 71 # define SHCL_WIN_WM_URI_START_WRITE WM_USER + 3 69 /** Reports a transfer status to the guest. */ 70 # define SHCL_WIN_WM_URI_TRANSFER_STATUS WM_USER + 2 72 71 #endif 73 72 … … 105 104 typedef struct _SHCLWINCTX 106 105 { 106 /** Critical section to serialize access. */ 107 RTCRITSECT CritSect; 107 108 /** Window handle of our (invisible) clipbaord window. */ 108 109 HWND hWnd; … … 120 121 int SharedClipboardWinClose(void); 121 122 int SharedClipboardWinClear(void); 123 124 int SharedClipboardWinCtxInit(PSHCLWINCTX pWinCtx); 125 void SharedClipboardWinCtxDestroy(PSHCLWINCTX pWinCtx); 122 126 123 127 int SharedClipboardWinCheckAndInitNewAPI(PSHCLWINAPINEW pAPI);
Note:
See TracChangeset
for help on using the changeset viewer.