Changeset 75955 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 4, 2018 9:08:55 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127171
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r75853 r75955 291 291 * 292 292 * @returns COM status code. 293 * @ þaram strCfg The config for the disks.294 * 295 * @note :One line in the config string contains all required data for one disk.293 * @param strCfg The config for the disks. 294 * 295 * @note One line in the config string contains all required data for one disk. 296 296 * The format for one disk is some sort of comma separated value using 297 297 * key=value pairs. … … 302 302 */ 303 303 HRESULT i_setDiskEncryptionKeys(const Utf8Str &strCfg); 304 305 306 #ifdef VBOX_WITH_GUEST_PROPS 307 // VMMDev needs: 308 HRESULT i_pullGuestProperties(ComSafeArrayOut(BSTR, names), ComSafeArrayOut(BSTR, values), 309 ComSafeArrayOut(LONG64, timestamps), ComSafeArrayOut(BSTR, flags)); 310 static DECLCALLBACK(int) i_doGuestPropNotification(void *pvExtension, uint32_t, void *pvParms, uint32_t cbParms); 311 #endif 304 312 305 313 private: … … 739 747 bool fAttachDetach, bool fIgnoreConnectFailure); 740 748 int i_configSerialPort(PCFGMNODE pInst, PortMode_T ePortMode, const char *pszPath, bool fServer); 741 static DECLCALLBACK(int) i_configGuestProperties(void *pvConsole);742 749 static DECLCALLBACK(void) i_vmstateChangeCallback(PUVM pUVM, VMSTATE enmState, VMSTATE enmOldState, void *pvUser); 743 750 static DECLCALLBACK(int) i_unplugCpu(Console *pThis, PUVM pUVM, VMCPUID idCpu); … … 836 843 837 844 #ifdef VBOX_WITH_GUEST_PROPS 838 static DECLCALLBACK(int) i_doGuestPropNotification(void *pvExtension, uint32_t, void *pvParms, uint32_t cbParms);839 845 HRESULT i_doEnumerateGuestProperties(const Utf8Str &aPatterns, 840 846 std::vector<Utf8Str> &aNames, -
trunk/src/VBox/Main/include/VMMDev.h
r75574 r75955 59 59 int hgcmLoadService (const char *pszServiceLibrary, const char *pszServiceName); 60 60 int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms); 61 # ifdef VBOX_WITH_CRHGSMI61 # ifdef VBOX_WITH_CRHGSMI 62 62 int hgcmHostSvcHandleCreate (const char *pszServiceName, HGCMCVSHANDLE * phSvc); 63 63 int hgcmHostSvcHandleDestroy (HGCMCVSHANDLE hSvc); 64 64 int hgcmHostFastCallAsync (HGCMCVSHANDLE hSvc, uint32_t function, PVBOXHGCMSVCPARM pParm, PHGCMHOSTFASTCALLCB pfnCompletion, void *pvCompletion); 65 # endif65 # endif 66 66 void hgcmShutdown(bool fUvmIsInvalid = false); 67 67 … … 70 70 71 71 private: 72 #ifdef VBOX_WITH_HGCM 73 # ifdef VBOX_WITH_GUEST_PROPS 74 void i_guestPropSetMultiple(void *names, void *values, void *timestamps, void *flags); 75 void i_guestPropSet(const char *pszName, const char *pszValue, const char *pszFlags); 76 int i_guestPropSetGlobalPropertyFlags(uint32_t fFlags); 77 int i_guestPropLoadAndConfigure(); 78 # endif 79 #endif 80 72 81 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 73 82 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
Note:
See TracChangeset
for help on using the changeset viewer.