Changeset 12982 in vbox for trunk/src/VBox/VMM/PDMDevice.cpp
- Timestamp:
- Oct 4, 2008 9:46:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevice.cpp
r12980 r12982 65 65 /** VM Handle. */ 66 66 PVM pVM; 67 } PDMDEVREGCBINT, *PPDMDEVREGCBINT; 67 } PDMDEVREGCBINT; 68 /** Pointer to a PDMDEVREGCBINT structure. */ 69 typedef PDMDEVREGCBINT *PPDMDEVREGCBINT; 70 /** Pointer to a const PDMDEVREGCBINT structure. */ 68 71 typedef const PDMDEVREGCBINT *PCPDMDEVREGCBINT; 69 72 … … 72 75 * Internal Functions * 73 76 *******************************************************************************/ 74 __BEGIN_DECLS75 77 static DECLCALLBACK(int) pdmR3DevReg_Register(PPDMDEVREGCB pCallbacks, PCPDMDEVREG pDevReg); 76 78 static DECLCALLBACK(void *) pdmR3DevReg_MMHeapAlloc(PPDMDEVREGCB pCallbacks, size_t cb); 77 78 static int pdmR3DevLoadModules(PVM pVM); 79 static int pdmR3DevLoad(PVM pVM, PPDMDEVREGCBINT pRegCB, const char *pszFilename, const char *pszName); 80 81 82 /* 83 * Allow physical read and writes from any thread 84 */ 85 #define PDM_PHYS_READWRITE_FROM_ANY_THREAD 86 87 __END_DECLS 79 static int pdmR3DevLoadModules(PVM pVM); 80 static int pdmR3DevLoad(PVM pVM, PPDMDEVREGCBINT pRegCB, const char *pszFilename, const char *pszName); 81 88 82 89 83 … … 594 588 595 589 596 597 590 /** 598 591 * Registers a device with the current VM instance.
Note:
See TracChangeset
for help on using the changeset viewer.