Changeset 107507 in vbox for trunk/src/VBox/Main/include/GuestSessionImpl.h
- Timestamp:
- Jan 8, 2025 1:19:31 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r106061 r107507 439 439 * Set to 0 if a valid Guest Additions version was not found (yet). */ 440 440 uint32_t mProtocolVersion; 441 /** Session timeout (in ms). */441 /** Session timeout (in ms). Not implemented yet and thus 0. */ 442 442 uint32_t mTimeout; 443 443 /** The last returned session VBox status status returned from the guest side. */ … … 447 447 448 448 Data(void) 449 : mpBaseEnvironment(NULL) 449 : mObjectID(0) 450 , mStatus(GuestSessionStatus_Undefined) 451 , mpBaseEnvironment(NULL) 452 , mProtocolVersion(0) 453 , mTimeout(0) 454 , mVrc(VINF_SUCCESS) 450 455 { 451 456 RT_ZERO(bmObjectIds); … … 456 461 : mCredentials(rThat.mCredentials) 457 462 , mSession(rThat.mSession) 463 , mObjectID(rThat.mObjectID) 458 464 , mStatus(rThat.mStatus) 459 465 , mEnvironmentChanges(rThat.mEnvironmentChanges)
Note:
See TracChangeset
for help on using the changeset viewer.