]>
Commit | Line | Data |
---|---|---|
dae2800a BP |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: funcmacro_env.h | |
3 | // Purpose: Environment function and macro group docs | |
4 | // Author: wxWidgets team | |
526954c5 | 5 | // Licence: wxWindows licence |
dae2800a BP |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
8 | /** | |
9 | ||
10 | @defgroup group_funcmacro_env Environment | |
11 | @ingroup group_funcmacro | |
12 | ||
1ba0de2e BP |
13 | These functions allow access to get or change the values of environment |
14 | variables in a portable way. They are currently implemented under Win32 and | |
15 | POSIX-like systems (Unix). | |
dae2800a | 16 | |
530cda2f FM |
17 | Remember that these functions add/change/delete environment variables of the |
18 | current process only. Child processes copy the environment variables of the parent | |
19 | but do not share them (a wxSetEnv() in the parent process won't change the value | |
20 | returned by wxGetEnv() in the child process and viceversa). | |
21 | ||
22 | For more evoluted interprocess communication tecniques see @ref overview_ipc. | |
23 | ||
dae2800a BP |
24 | */ |
25 |