Changeset 4708 in vbox for trunk/src/VBox
- Timestamp:
- Sep 11, 2007 12:36:36 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.h
r4111 r4708 123 123 DECLVBGL(int) vboxCallQueryMapName (PVBSFCLIENT pClient, SHFLROOT root, SHFLSTRING *pString, uint32_t size); 124 124 125 /** 126 * Create a new file or folder or open an existing one in a shared folder. Proxies 127 * to vbsfCreate in the host shared folder service. 128 * 129 * @returns IPRT status code, but see note below 130 * @param pClient Host-guest communication connection 131 * @param pMap The mapping for the shared folder in which the file 132 * or folder is to be created 133 * @param pParsedPath The path of the file or folder relative to the shared 134 * folder 135 * @param pCreateParms Parameters for file/folder creation. See the 136 * structure description in shflsvc.h 137 * @retval pCreateParms See the structure description in shflsvc.h 138 * 139 * @note This function reports errors as follows. The return value is always 140 * VINF_SUCCESS unless an exceptional condition occurrs - out of 141 * memory, invalid arguments, etc. If the file or folder could not be 142 * opened or created, pCreateParms->Handle will be set to 143 * SHFL_HANDLE_NIL on return. In this case the value in 144 * pCreateParms->Result provides information as to why (e.g. 145 * SHFL_FILE_EXISTS). pCreateParms->Result is also set on success 146 * as additional information. 147 */ 125 148 DECLVBGL(int) vboxCallCreate (PVBSFCLIENT pClient, PVBSFMAP pMap, PSHFLSTRING pParsedPath, PSHFLCREATEPARMS pCreateParms); 126 149
Note:
See TracChangeset
for help on using the changeset viewer.