Changeset 77068 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 31, 2019 11:53:09 AM (6 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r76958 r77068 36 36 #include <deque> 37 37 38 class GuestSessionTaskInternal Open; /* Needed for i_startSessionThreadTask(). */38 class GuestSessionTaskInternalStart; /* Needed for i_startSessionThreadTask(). */ 39 39 40 40 /** … … 313 313 int i_startSession(int *pGuestRc); 314 314 int i_startSessionAsync(void); 315 static void i_startSessionThreadTask(GuestSessionTaskInternalOpen*pTask);315 static int i_startSessionThreadTask(GuestSessionTaskInternalStart *pTask); 316 316 Guest *i_getParent(void) { return mParent; } 317 317 uint32_t i_getProtocolVersion(void) { return mData.mProtocolVersion; } -
trunk/src/VBox/Main/include/GuestSessionImplTasks.h
r76562 r77068 35 35 class Guest; 36 36 class GuestSessionTask; 37 class GuestSessionTaskInternal Open;37 class GuestSessionTaskInternalStart; 38 38 39 39
Note:
See TracChangeset
for help on using the changeset viewer.