Changeset 10118 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 2, 2008 6:18:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibInfoSvc.cpp
r10098 r10118 81 81 82 82 /** 83 * Write a registry value.83 * Write a key value. 84 84 * 85 85 * @returns VBox status code. 86 86 * @param u32ClientId The client id returned by VbglR3InvsSvcConnect(). 87 * @param pszKey The registrykey to save to.87 * @param pszKey The key to save to. 88 88 * @param pszValue The value to store. If this is NULL then the key 89 89 * will be removed. … … 125 125 126 126 /** 127 * Retrieve a registry value.127 * Retrieve a key value. 128 128 * 129 129 * @returns VBox status code. If the value is not found, returns VERR_NOT_FOUND 130 * @retval VINF_SUCCESS on success, pszValue and pcbActual containing valid data. 131 * @retval VERR_BUFFER_OVERFLOW if the buffer is too small, pcbActual will contain 132 * the require buffer size. Note race condition here when retrying wrt 133 * someone updating it. 134 * @retval VERR_NOT_FOUND if the key wasn't found. 135 * 130 136 * @param u32ClientId The client id returned by VbglR3ClipboardConnect(). 131 * @param pszKey The registry key to save to.137 * @param pszKey The key to read. 132 138 * @param pszValue Where to store the value retrieved. 133 139 * @param cbValue The size of the buffer pszValue points to.
Note:
See TracChangeset
for help on using the changeset viewer.