Changeset 27920 in vbox for trunk/include
- Timestamp:
- Mar 31, 2010 7:02:48 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmasynccompletion.h
r27738 r27920 64 64 * @param pDevIns The device instance. 65 65 * @param pvUser User argument. 66 */ 67 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDEV(PPDMDEVINS pDevIns, void *pvUser); 66 * @param rc The status code of the completed request. 67 */ 68 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDEV(PPDMDEVINS pDevIns, void *pvUser, int rc); 68 69 /** Pointer to a FNPDMASYNCCOMPLETEDEV(). */ 69 70 typedef FNPDMASYNCCOMPLETEDEV *PFNPDMASYNCCOMPLETEDEV; … … 76 77 * @param pvTemplateUser User argument given when creating the template. 77 78 * @param pvUser User argument given during request initiation. 78 */ 79 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDRV(PPDMDRVINS pDrvIns, void *pvTemplateUser, void *pvUser); 79 * @param rc The status code of the completed request. 80 */ 81 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEDRV(PPDMDRVINS pDrvIns, void *pvTemplateUser, void *pvUser, int rc); 80 82 /** Pointer to a FNPDMASYNCCOMPLETEDRV(). */ 81 83 typedef FNPDMASYNCCOMPLETEDRV *PFNPDMASYNCCOMPLETEDRV; … … 87 89 * @param pUsbIns The USB device instance. 88 90 * @param pvUser User argument. 89 */ 90 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEUSB(PPDMUSBINS pUsbIns, void *pvUser); 91 * @param rc The status code of the completed request. 92 */ 93 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEUSB(PPDMUSBINS pUsbIns, void *pvUser, int rc); 91 94 /** Pointer to a FNPDMASYNCCOMPLETEUSB(). */ 92 95 typedef FNPDMASYNCCOMPLETEUSB *PFNPDMASYNCCOMPLETEUSB; … … 99 102 * @param pvUser User argument for the task. 100 103 * @param pvUser2 User argument for the template. 101 */ 102 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEINT(PVM pVM, void *pvUser, void *pvUser2); 104 * @param rc The status code of the completed request. 105 */ 106 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEINT(PVM pVM, void *pvUser, void *pvUser2, int rc); 103 107 /** Pointer to a FNPDMASYNCCOMPLETEINT(). */ 104 108 typedef FNPDMASYNCCOMPLETEINT *PFNPDMASYNCCOMPLETEINT;
Note:
See TracChangeset
for help on using the changeset viewer.