VirtualBox

Changeset 57820 in vbox for trunk/include


Ignore:
Timestamp:
Sep 18, 2015 10:00:11 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102769
Message:

IPRT/process-win.cpp: User profile environment handling, take 2: Renamed RTPROC_FLAGS_OVERWRITE_WITH_PROFILE to RTPROC_MODIFY_DEFAULT_ENV and changed its semantics. See flag description for details.

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/env.h

    r56291 r57820  
    385385RTDECL(int) RTEnvApplyChanges(RTENV hEnvDst, RTENV hEnvChanges);
    386386
     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 */
     399RTDECL(int) RTEnvFromUtf16Block(RTENV hEnv, PCRTUTF16 pcwszBlock, bool fOverwriteExisting);
    387400
    388401#endif /* IN_RING3 */
  • trunk/include/iprt/mangling.h

    r57723 r57820  
    521521# define RTEnvFreeUtf8Block                             RT_MANGLER(RTEnvFreeUtf8Block)
    522522# define RTEnvFreeUtf16Block                            RT_MANGLER(RTEnvFreeUtf16Block)
     523# define RTEnvFromUtf16                                 RT_MANGLER(RTEnvFromUtf16)
    523524# define RTEnvGet                                       RT_MANGLER(RTEnvGet)
    524525# define RTEnvGetBad                                    RT_MANGLER(RTEnvGetBad)
     
    18731874# define RTUriParsedQuery                               RT_MANGLER(RTUriParsedQuery)
    18741875# define RTUriIsSchemeMatch                             RT_MANGLER(RTUriIsSchemeMatch)
    1875 # define RTUriPath                                      RT_MANGLER(RTUriPath)
    18761876# define RTUtf16AllocTag                                RT_MANGLER(RTUtf16AllocTag)
    18771877# define RTUtf16CalcLatin1Len                           RT_MANGLER(RTUtf16CalcLatin1Len)
  • trunk/include/iprt/process.h

    r57799 r57820  
    211211 * passing argument the vector. */
    212212#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)
    217218/** Valid flag mask. */
    218219#define RTPROC_FLAGS_VALID_MASK             UINT32_C(0x1ff)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette