Changeset 81928 in vbox for trunk/include
- Timestamp:
- Nov 18, 2019 12:42:34 AM (5 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r81923 r81928 5857 5857 5858 5858 /** 5859 * Combines PDMDevHlpIoPortCreate() & PDMDevHlpIoPortMap(), but with flags. 5860 */ 5861 DECLINLINE(int) PDMDevHlpIoPortCreateFlagsAndMap(PPDMDEVINS pDevIns, RTIOPORT Port, RTIOPORT cPorts, uint32_t fFlags, 5862 PFNIOMIOPORTNEWOUT pfnOut, PFNIOMIOPORTNEWIN pfnIn, 5863 const char *pszDesc, PCIOMIOPORTDESC paExtDescs, PIOMIOPORTHANDLE phIoPorts) 5864 { 5865 int rc = pDevIns->pHlpR3->pfnIoPortCreateEx(pDevIns, cPorts, fFlags, NULL, UINT32_MAX, 5866 pfnOut, pfnIn, NULL, NULL, NULL, pszDesc, paExtDescs, phIoPorts); 5867 if (RT_SUCCESS(rc)) 5868 rc = pDevIns->pHlpR3->pfnIoPortMap(pDevIns, *phIoPorts, Port); 5869 return rc; 5870 } 5871 5872 /** 5859 5873 * Combines PDMDevHlpIoPortCreateEx() & PDMDevHlpIoPortMap(). 5860 5874 */ -
trunk/include/iprt/mangling.h
r81926 r81928 2120 2120 # define RTStrIsValidEncoding RT_MANGLER(RTStrIsValidEncoding) 2121 2121 # define RTStrMemFind16 RT_MANGLER(RTStrMemFind16) 2122 # define RTStrMemFind16_EndProc RT_MANGLER(RTStrMemFind16_EndProc) 2122 2123 # define RTStrMemFind32 RT_MANGLER(RTStrMemFind32) 2124 # define RTStrMemFind32_EndProc RT_MANGLER(RTStrMemFind32_EndProc) 2123 2125 # define RTStrMemFind64 RT_MANGLER(RTStrMemFind64) 2126 # define RTStrMemFind64_EndProc RT_MANGLER(RTStrMemFind64_EndProc) 2124 2127 # define RTStrmClearError RT_MANGLER(RTStrmClearError) 2125 2128 # define RTStrmClose RT_MANGLER(RTStrmClose)
Note:
See TracChangeset
for help on using the changeset viewer.