Lines Matching full:windows
13 /* We use GetEnvironmentVariable for Windows* OS instead of getenv because the
14 act of loading a DLL on Windows* OS makes any user-set environment variables
18 On Windows* OS, there are two environments (at least, see below):
20 1. Environment maintained by Windows* OS on IA-32 architecture. Accessible
26 putenv() function updates both C and Windows* OS on IA-32 architecture.
28 Windows* OS on IA-32 architecture functions work *only* with Windows* OS on
31 Windows* OS on IA-32 architecture maintained by OS, so there is always only
32 one Windows* OS on IA-32 architecture per process. Changes in Windows* OS on
38 Thus, proper way to work with environment on Windows* OS is:
40 1. Set variables with putenv() function -- both C and Windows* OS on IA-32
41 architecture are being updated. Windows* OS on IA-32 architecture may be
45 search Windows* OS on IA-32 architecture, and can not see variables
68 #include <windows.h> // GetEnvironmentVariable, SetEnvironmentVariable,
99 /* We use GetEnvironmentVariable for Windows* OS instead of getenv because the
100 act of loading a DLL on Windows* OS makes any user-set environment
294 /* Windows* OS (actually, DOS) environment block is a piece of memory with
307 char const *env // I: Pointer to Windows* OS (DOS) environment block.