Changeset 25942 in vbox for trunk/include
- Timestamp:
- Jan 20, 2010 5:26:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/env.h
r21388 r25942 130 130 * 131 131 * @returns IPRT status code. 132 * @retval VERR_ENV_VAR_NOT_FOUND if the variable was not found. 132 133 * 133 134 * @param Env The environment handle. … … 212 213 RTDECL(int) RTEnvUnsetEx(RTENV Env, const char *pszVar); 213 214 215 /** 216 * Duplicates the value of a environment variable if it exists. 217 * 218 * @returns Pointer to a string containing the value, free it using RTStrFree. 219 * NULL if the variable was not found or we're out of memory. 220 * 221 * @param Env The environment handle. 222 * @param pszVar The environment variable name. 223 */ 224 RTDECL(char *) RTEnvDupEx(RTENV Env, const char *pszVar); 225 214 226 #endif /* IN_RING3 */ 215 227
Note:
See TracChangeset
for help on using the changeset viewer.