Changeset 75853 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 30, 2018 7:26:42 PM (6 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r75527 r75853 740 740 int i_configSerialPort(PCFGMNODE pInst, PortMode_T ePortMode, const char *pszPath, bool fServer); 741 741 static DECLCALLBACK(int) i_configGuestProperties(void *pvConsole); 742 static DECLCALLBACK(int) i_configGuestControl(void *pvConsole);743 742 static DECLCALLBACK(void) i_vmstateChangeCallback(PUVM pUVM, VMSTATE enmState, VMSTATE enmOldState, void *pvUser); 744 743 static DECLCALLBACK(int) i_unplugCpu(Console *pThis, PUVM pUVM, VMCPUID idCpu); -
trunk/src/VBox/Main/include/HGCM.h
r75574 r75853 26 26 #include <VBox/hgcmsvc.h> 27 27 28 /* HGCM saved state version */29 #define HGCM_SSM_VERSION 230 31 28 /* Handle of a HGCM service extension. */ 32 29 struct _HGCMSVCEXTHANDLEDATA; … … 39 36 int HGCMHostReset(void); 40 37 41 int HGCMHostLoad(const char *pszServiceLibrary, const char *pszServiceName, PUVM pUVM );38 int HGCMHostLoad(const char *pszServiceLibrary, const char *pszServiceName, PUVM pUVM, PPDMIHGCMPORT pHgcmPort); 42 39 43 40 int HGCMHostRegisterServiceExtension(HGCMSVCEXTHANDLE *pHandle, const char *pszServiceName, PFNHGCMSVCEXT pfnExtension, void *pvExtension); … … 59 56 60 57 int HGCMHostSaveState(PSSMHANDLE pSSM); 61 int HGCMHostLoadState(PSSMHANDLE pSSM );58 int HGCMHostLoadState(PSSMHANDLE pSSM, uint32_t uVersion); 62 59 63 60 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.