Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1003 Bytes

FreeEnvironmentStrings.md

File metadata and controls

41 lines (28 loc) · 1003 Bytes

Home

Function name : FreeEnvironmentStrings

Group: Process and Thread - Library: kernel32


The FreeEnvironmentStrings function frees a block of environment strings.


Code examples:

Storing the environment strings in cursor

Declaration:

BOOL FreeEnvironmentStrings(
  LPTSTR lpszEnvironmentBlock  // envir. strings
);  

FoxPro declaration:

DECLARE INTEGER FreeEnvironmentStrings IN kernel32;
	INTEGER lpszEnvBlock  

Parameters:

lpszEnvironmentBlock [in] Pointer to a block of environment strings. The pointer to the block must be obtained by calling the GetEnvironmentStrings function.


Return value:

If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.