funcmacro_env.h 946 B

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