Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.15 KB

RpcStringFree.md

File metadata and controls

51 lines (34 loc) · 1.15 KB

Home

Function name : RpcStringFree

Group: Remote Procedure Call (RPC) - Library: rpcrt4


Frees a character string allocated by the RPC run-time library.


Code examples:

Generating random UUID values
Generating sequential UUID values
Generating UUID values from numbers

Declaration:

RPC_STATUS RPC_ENTRY RpcStringFree(
	unsigned char **String
);  

FoxPro declaration:

DECLARE INTEGER RpcStringFree IN Rpcrt4;
	LONG @StringUuid  

Parameters:

String Pointer to a pointer to the character string to free.


Return value:

Returns RPC_S_OK (0) if the call succeeded.


Comments:

An application is responsible for calling RpcStringFree once for each character string allocated and returned by calls to other RPC run-time library routines.

See also: UuidToString.