Changeset 31241 in vbox for trunk/include/VBox
- Timestamp:
- Jul 30, 2010 12:50:58 PM (14 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r30964 r31241 589 589 typedef struct VBoxGuestInfo 590 590 { 591 /** The VMMDev interface version expected by additions. */ 592 uint32_t additionsVersion; 591 /** The VMMDev interface version expected by additions. 592 * *Deprecated*, do not use anymore! Will be removed. */ 593 uint32_t interfaceVersion; 593 594 /** Guest OS type. */ 594 595 VBOXOSTYPE osType; … … 628 629 /** Feature mask, currently unused. */ 629 630 uint32_t additionsFeatures; 630 /** some additional information, for example 'Beta 1' or something like that*/631 /** Some additional information, for example 'Beta 1' or something like that. */ 631 632 char szName[128]; 632 633 } VBoxGuestInfo2; 633 634 AssertCompileSize(VBoxGuestInfo2, 144); 634 635 635 636 /** -
trunk/include/VBox/pdmifs.h
r30945 r31241 2112 2112 2113 2113 /** 2114 * Reports the detailed Guest Additions version. 2115 * Called whenever the Additions issue a guest version report request or the VM is reset. 2116 * 2117 * @param pInterface Pointer to this interface. 2118 * @param guestInfo Pointer to Guest Additions information structure. 2119 * @thread The emulation thread. 2120 */ 2121 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestInfo2,(PPDMIVMMDEVCONNECTOR pInterface, const struct VBoxGuestInfo2 *pGuestInfo)); 2122 2123 /** 2114 2124 * Update the guest additions capabilities. 2115 2125 * This is called when the guest additions capabilities change. The new capabilities
Note:
See TracChangeset
for help on using the changeset viewer.