2008-03-14 01:47:17 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: funcmacro_env.h
|
|
|
|
// Purpose: Environment function and macro group docs
|
|
|
|
// Author: wxWidgets team
|
2010-07-13 09:29:13 -04:00
|
|
|
// Licence: wxWindows licence
|
2008-03-14 01:47:17 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
@defgroup group_funcmacro_env Environment
|
|
|
|
@ingroup group_funcmacro
|
|
|
|
|
2008-03-19 04:02:01 -04:00
|
|
|
These functions allow access to get or change the values of environment
|
|
|
|
variables in a portable way. They are currently implemented under Win32 and
|
|
|
|
POSIX-like systems (Unix).
|
2008-03-14 01:47:17 -04:00
|
|
|
|
2009-03-23 11:04:29 -04:00
|
|
|
Remember that these functions add/change/delete environment variables of the
|
2018-08-14 11:15:39 -04:00
|
|
|
current process only. Child processes copy the environment variables of the parent,
|
2009-03-23 11:04:29 -04:00
|
|
|
but do not share them (a wxSetEnv() in the parent process won't change the value
|
2018-08-14 11:15:39 -04:00
|
|
|
returned by wxGetEnv() in the child process and vice versa).
|
2009-03-23 11:04:29 -04:00
|
|
|
|
2018-08-14 11:15:39 -04:00
|
|
|
For more advanced interprocess communication techniques see @ref overview_ipc.
|
2009-03-23 11:04:29 -04:00
|
|
|
|
2008-03-14 01:47:17 -04:00
|
|
|
*/
|
|
|
|
|