Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The LMX_Putenv function lets you change environment variables.

Prototype

Code Block
languagecpp
LMX_STATUS LMX_Putenv
(
   const char *szEnvironmentVariable
);

Parameters Parameters 

szEnvironmentVariable
[in] Environment variable name and value, in the format "name=value" (identical to the C API putenv() function).

...

On failure, this function returns an error code in the format described in Return codes.

Remarks

This function should be used instead of using functions such as putenv or unsetenv.

...