Changeset 22334 in vbox for trunk/include
- Timestamp:
- Aug 18, 2009 8:56:06 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51246
- Location:
- trunk/include/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cfgm.h
r22161 r22334 38 38 * @{ 39 39 */ 40 41 /** Configuration manager tree node - A key. */42 typedef struct CFGMNODE *PCFGMNODE;43 44 /** Configuration manager tree leaf - A value. */45 typedef struct CFGMLEAF *PCFGMLEAF;46 40 47 41 /** -
trunk/include/VBox/err.h
r22277 r22334 1001 1001 * The PDMDEVREG::pfnAttach callback function is NULL. */ 1002 1002 #define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853) 1003 1003 /** The driver doesn't support runtime driver attaching. 1004 * The PDMDRVREG::pfnAttach callback function is NULL. */ 1005 #define VERR_PDM_DRIVER_NO_RT_ATTACH (-2854) 1004 1006 /** Invalid host interface version. */ 1005 1007 #define VERR_PDM_HIF_INVALID_VERSION (-2855) -
trunk/include/VBox/pdmapi.h
r22328 r22334 109 109 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags, PPDMIBASE *ppBase); 110 110 VMMR3DECL(int) PDMR3DeviceDetach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags); 111 VMMR3DECL(int) PDMR3DriverAttach(PVM pVM, const char *pszDevice, unsigned iDevIns, unsigned iLun, 112 const char *pszDriver, unsigned iOccurance, uint32_t fFlags, PPPDMIBASE ppBase); 111 VMMR3DECL(int) PDMR3DriverAttach(PVM pVM, const char *pszDevice, unsigned iDevIns, unsigned iLun, uint32_t fFlags, PPPDMIBASE *ppBase); 113 112 VMMR3DECL(int) PDMR3DriverDetach(PVM pVM, const char *pszDevice, unsigned iDevIns, unsigned iLun, 114 113 const char *pszDriver, unsigned iOccurance, uint32_t fFlags); 114 VMMR3DECL(int) PDMR3DriverReattach(PVM pVM, const char *pszDevice, unsigned iDevIns, unsigned iLun, 115 const char *pszDriver, unsigned iOccurance, uint32_t fFlags, PCFGMNODE pCfg, PPPDMIBASE *ppBase); 115 116 VMMR3DECL(void) PDMR3DmaRun(PVM pVM); 116 117 VMMR3DECL(int) PDMR3LockCall(PVM pVM); -
trunk/include/VBox/types.h
r20880 r22334 641 641 642 642 643 /** Configuration manager tree node - A key. */ 644 typedef struct CFGMNODE *PCFGMNODE; 645 646 /** Configuration manager tree leaf - A value. */ 647 typedef struct CFGMLEAF *PCFGMLEAF; 648 649 643 650 /** @} */ 644 651
Note:
See TracChangeset
for help on using the changeset viewer.