Changeset 57820 in vbox for trunk/include
- Timestamp:
- Sep 18, 2015 10:00:11 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102769
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/env.h
r56291 r57820 385 385 RTDECL(int) RTEnvApplyChanges(RTENV hEnvDst, RTENV hEnvChanges); 386 386 387 /** 388 * Creates an environment block out of a handed-in Unicode block. 389 * 390 * @return IPRT status code. 391 * @param hEnv Handle of an existing RTENV block to store the 392 * result into. 393 * @param pcwszBlock Unicode block (array) of environment entries; 394 * in form of "FOO=BAR\0BAR=BAZ". 395 * @param fOverwriteExisting Whether to overwrite existing values of hEnv 396 * with the ones defined in pcwszBlock. 397 398 */ 399 RTDECL(int) RTEnvFromUtf16Block(RTENV hEnv, PCRTUTF16 pcwszBlock, bool fOverwriteExisting); 387 400 388 401 #endif /* IN_RING3 */ -
trunk/include/iprt/mangling.h
r57723 r57820 521 521 # define RTEnvFreeUtf8Block RT_MANGLER(RTEnvFreeUtf8Block) 522 522 # define RTEnvFreeUtf16Block RT_MANGLER(RTEnvFreeUtf16Block) 523 # define RTEnvFromUtf16 RT_MANGLER(RTEnvFromUtf16) 523 524 # define RTEnvGet RT_MANGLER(RTEnvGet) 524 525 # define RTEnvGetBad RT_MANGLER(RTEnvGetBad) … … 1873 1874 # define RTUriParsedQuery RT_MANGLER(RTUriParsedQuery) 1874 1875 # define RTUriIsSchemeMatch RT_MANGLER(RTUriIsSchemeMatch) 1875 # define RTUriPath RT_MANGLER(RTUriPath)1876 1876 # define RTUtf16AllocTag RT_MANGLER(RTUtf16AllocTag) 1877 1877 # define RTUtf16CalcLatin1Len RT_MANGLER(RTUtf16CalcLatin1Len) -
trunk/include/iprt/process.h
r57799 r57820 211 211 * passing argument the vector. */ 212 212 #define RTPROC_FLAGS_UNQUOTED_ARGS RT_BIT(7) 213 /** Only valid in combination with RTPROC_FLAGS_PROFILE. 214 * This will overwrite environment variables of the passed-in hEnv 215 * environment block with variables of the loaded profile. */ 216 #define RTPROC_FLAGS_OVERWRITE_WITH_PROFILE RT_BIT(8) 213 /** Indicates that the passed hEnv environment block should be used to 214 * modify the default environment block. If this flag is not specified, 215 * then hEnv will be used exclusively. If hEnv is RTENV_DEFAULT, however, 216 * this flag does nothing. */ 217 #define RTPROC_MODIFY_DEFAULT_ENV RT_BIT(8) 217 218 /** Valid flag mask. */ 218 219 #define RTPROC_FLAGS_VALID_MASK UINT32_C(0x1ff)
Note:
See TracChangeset
for help on using the changeset viewer.