Changeset 7752 in vbox for trunk/include/VBox/pdmdev.h
- Timestamp:
- Apr 4, 2008 5:35:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r7635 r7752 1756 1756 * @param pszRead Name of the GC function which is gonna handle Read operations. 1757 1757 * @param pszFill Name of the GC function which is gonna handle Fill/memset operations. (optional) 1758 * @param pszDesc Pointer to description string. This must not be freed. 1758 * @param pszDesc Obsolete. NULL is fine. 1759 * @todo Remove pszDesc in the next major revision of PDMDEVHLP. 1759 1760 */ 1760 1761 DECLR3CALLBACKMEMBER(int, pfnMMIORegisterGC,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser, … … 1776 1777 * @param pszRead Name of the GC function which is gonna handle Read operations. 1777 1778 * @param pszFill Name of the GC function which is gonna handle Fill/memset operations. (optional) 1778 * @param pszDesc Pointer to description string. This must not be freed. 1779 * @param pszDesc Obsolete. NULL is fine. 1780 * @todo Remove pszDesc in the next major revision of PDMDEVHLP. 1779 1781 */ 1780 1782 DECLR3CALLBACKMEMBER(int, pfnMMIORegisterR0,(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser, … … 3110 3112 */ 3111 3113 DECLINLINE(int) PDMDevHlpMMIORegisterGC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser, 3112 const char *pszWrite, const char *pszRead, const char *pszFill , const char *pszDesc)3113 { 3114 return pDevIns->pDevHlp->pfnMMIORegisterGC(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill, pszDesc);3114 const char *pszWrite, const char *pszRead, const char *pszFill) 3115 { 3116 return pDevIns->pDevHlp->pfnMMIORegisterGC(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill, NULL); 3115 3117 } 3116 3118 … … 3119 3121 */ 3120 3122 DECLINLINE(int) PDMDevHlpMMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser, 3121 const char *pszWrite, const char *pszRead, const char *pszFill , const char *pszDesc)3122 { 3123 return pDevIns->pDevHlp->pfnMMIORegisterR0(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill, pszDesc);3123 const char *pszWrite, const char *pszRead, const char *pszFill) 3124 { 3125 return pDevIns->pDevHlp->pfnMMIORegisterR0(pDevIns, GCPhysStart, cbRange, pvUser, pszWrite, pszRead, pszFill, NULL); 3124 3126 } 3125 3127
Note:
See TracChangeset
for help on using the changeset viewer.