Changeset 81921 in vbox
- Timestamp:
- Nov 17, 2019 10:04:59 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134718
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r81911 r81921 5882 5882 } 5883 5883 5884 5885 /** 5886 * @sa PDMDevHlpIoPortCreateEx 5887 */ 5888 DECLINLINE(int) PDMDevHlpIoPortCreateIsa(PPDMDEVINS pDevIns, RTIOPORT cPorts, PFNIOMIOPORTNEWOUT pfnOut, 5889 PFNIOMIOPORTNEWIN pfnIn, void *pvUser, const char *pszDesc, 5890 PCIOMIOPORTDESC paExtDescs, PIOMIOPORTHANDLE phIoPorts) 5891 { 5892 return pDevIns->pHlpR3->pfnIoPortCreateEx(pDevIns, cPorts, 0, NULL, UINT32_MAX, 5893 pfnOut, pfnIn, NULL, NULL, pvUser, pszDesc, paExtDescs, phIoPorts); 5894 } 5895 5884 5896 /** 5885 5897 * @copydoc PDMDEVHLPR3::pfnIoPortCreateEx
Note:
See TracChangeset
for help on using the changeset viewer.