Changeset 5790 in vbox
- Timestamp:
- Nov 19, 2007 10:59:15 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmasynccompletion.h
r5660 r5790 87 87 88 88 /** 89 * Completion callback for USB devices.90 * 91 * @param p UsbIns The USB device instance.89 * Completion callback for internal. 90 * 91 * @param pVM Pointer to the shared VM structure. 92 92 * @param pTask Pointer to the completion task. 93 93 * The task is at the time of the call setup to be resumed. So, the callback must … … 98 98 * @param pvUser2 User argument for the template. 99 99 */ 100 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEINT(PVM , PPDMASYNCCOMPLETION pTask, void *pvCtx, void *pvUser, void *pvUser2);100 typedef DECLCALLBACK(void) FNPDMASYNCCOMPLETEINT(PVM pVM, PPDMASYNCCOMPLETION pTask, void *pvCtx, void *pvUser, void *pvUser2); 101 101 /** Pointer to a FNPDMASYNCCOMPLETEINT(). */ 102 102 typedef FNPDMASYNCCOMPLETEINT *PFNPDMASYNCCOMPLETEINT; … … 252 252 * @param fXcpt Whether to callback on exception. 253 253 */ 254 PDMR3DECL(int) PDMR3AsyncCompletionModifySocket(PPDMASYNCCOMPLETION TEMPLATE pTemplate, bool fReadable, bool fWriteable, bool fXcpt);254 PDMR3DECL(int) PDMR3AsyncCompletionModifySocket(PPDMASYNCCOMPLETION pTask, bool fReadable, bool fWriteable, bool fXcpt); 255 255 256 256 … … 320 320 * @param pTask The async completion task. 321 321 */ 322 PDMR3DECL(int) PDMR3AsyncCompletionSuspend(PPDMASYNCCOMPLETION TEMPLATE pTemplate);322 PDMR3DECL(int) PDMR3AsyncCompletionSuspend(PPDMASYNCCOMPLETION pTask); 323 323 324 324 /** … … 331 331 * @param pTask The async completion task. 332 332 */ 333 PDMR3DECL(int) PDMR3AsyncCompletionResume(PPDMASYNCCOMPLETION TEMPLATE pTemplate);333 PDMR3DECL(int) PDMR3AsyncCompletionResume(PPDMASYNCCOMPLETION pTask); 334 334 335 335 /** … … 343 343 * @param pTask The async completion task. 344 344 */ 345 PDMR3DECL(int) PDMR3AsyncCompletionDestroy(PPDMASYNCCOMPLETION TEMPLATE pTemplate);345 PDMR3DECL(int) PDMR3AsyncCompletionDestroy(PPDMASYNCCOMPLETION pTask); 346 346 347 347 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.