Changeset 46246 in vbox for trunk/include/iprt
- Timestamp:
- May 23, 2013 7:15:44 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/aiomgr.h
r45723 r46246 81 81 * @param phAioMgrFile Where to store the newly created async I/O manager 82 82 * handle on success. 83 * @param pvUser Opaque user data for this file handle. 83 84 * 84 85 * @note This function increases the reference count of the given async I/O manager … … 86 87 */ 87 88 RTDECL(int) RTAioMgrFileCreate(RTAIOMGR hAioMgr, RTFILE hFile, PFNRTAIOMGRREQCOMPLETE pfnReqComplete, 88 PRTAIOMGRFILE phAioMgrFile);89 void *pvUser, PRTAIOMGRFILE phAioMgrFile); 89 90 90 91 /** … … 103 104 */ 104 105 RTDECL(uint32_t) RTAioMgrFileRelease(RTAIOMGRFILE hAioMgrFile); 106 107 /** 108 * Return opaque user data passed on creation. 109 * 110 * @returns Opaque user data or NULL if the handle is invalid. 111 * @param hAioMgrFile The file handle. 112 */ 113 RTDECL(void *) RTAioMgrFileGetUser(RTAIOMGRFILE hAioMgrFile); 105 114 106 115 /**
Note:
See TracChangeset
for help on using the changeset viewer.