Changeset 99596 in vbox
- Timestamp:
- May 4, 2023 9:07:00 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.h
r99595 r99596 111 111 } 112 112 113 int init(void);114 int worker(bool volatile *pfShutdown);115 v oid reset(void);116 v oid stop(void);117 int term(void);113 virtual int init(void) override; 114 virtual int worker(bool volatile *pfShutdown) override; 115 virtual void reset(void) override; 116 virtual void stop(void) override; 117 virtual int term(void) override; 118 118 119 119 private: … … 125 125 Display *m_pDisplay; 126 126 /** Our (thread-safe) event queue with mixed events (DnD HGCM / X11). */ 127 RTCMTList<VBCLDNDEVENT> m_eventQueue;127 RTCMTList<VBCLDNDEVENT> m_eventQueue; 128 128 /** Critical section for providing serialized access to list 129 129 * event queue's contents. */
Note:
See TracChangeset
for help on using the changeset viewer.