Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.16 KB

SetHandleInformation.md

File metadata and controls

54 lines (37 loc) · 1.16 KB

Home

Function name : SetHandleInformation

Group: Handle and Object - Library: kernel32


Sets certain properties of an object handle.


Declaration:

BOOL WINAPI SetHandleInformation(
	__in  HANDLE hObject,
	__in  DWORD dwMask,
	__in  DWORD dwFlags
);  

FoxPro declaration:

DECLARE INTEGER SetHandleInformation IN kernel32;
	INTEGERh Object,;
	LONG dwMask,;
	LONG dwFlags  

Parameters:

hObject [in] A handle to an object whose information is to be set.

dwMask [in] A mask that specifies the bit flags to be changed. Use the same constants shown in the description of dwFlags.

dwFlags [in] Set of bit flags that specifies properties of the object handle. This parameter can be 0 or one or more of the following values.


Return value:

If the function succeeds, the return value is nonzero.


Comments:

See also: GetHandleInformation, CloseHandle.