Changeset 29521 in vbox for trunk/include/VBox/pdmcommon.h
- Timestamp:
- May 17, 2010 10:14:22 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61661
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmcommon.h
r28800 r29521 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2010 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 132 132 typedef FNPDMDRVASYNCNOTIFY *PFNPDMDRVASYNCNOTIFY; 133 133 134 134 135 /** 135 * The ring-0 driver request handle. 136 * The ring-0 driver request handler. 137 * 138 * @returns VBox status code. PDMDevHlpCallR0 will return this. 139 * @param pDevIns The device instance (the ring-0 mapping). 140 * @param uOperation The operation. 141 * @param u64Arg Optional integer argument for the operation. 142 */ 143 typedef DECLCALLBACK(int) FNPDMDEVREQHANDLERR0(PPDMDEVINS pDevIns, uint32_t uOperation, uint64_t u64Arg); 144 /** Ring-0 pointer to a FNPDMDEVREQHANDLERR0. */ 145 typedef R0PTRTYPE(FNPDMDEVREQHANDLERR0 *) PFNPDMDEVREQHANDLERR0; 146 147 /** 148 * The ring-0 driver request handler. 136 149 * 137 150 * @returns VBox status code. PDMDrvHlpCallR0 will return this. … … 144 157 typedef R0PTRTYPE(FNPDMDRVREQHANDLERR0 *) PFNPDMDRVREQHANDLERR0; 145 158 159 146 160 /** @} */ 147 161
Note:
See TracChangeset
for help on using the changeset viewer.