Changeset 99598 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- May 4, 2023 9:15:27 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.h
r99597 r99598 87 87 public: 88 88 89 virtual int init(void) = 0;90 virtual int worker(bool volatile *pfShutdown) = 0;91 virtual void reset(void) = 0;92 virtual void stop(void) = 0;93 virtual int term(void) = 0;89 virtual int init(void) { return VINF_SUCCESS; } 90 virtual int worker(bool volatile *pfShutdown) { RT_NOREF(pfShutdown); return VINF_SUCCESS; } 91 virtual void reset(void) { } 92 virtual void stop(void) { } 93 virtual int term(void) { return VINF_SUCCESS; } 94 94 95 95 #ifdef IN_GUEST
Note:
See TracChangeset
for help on using the changeset viewer.