Group: Handle and Object - Library: kernel32
Memory usage info for current VFP session (WinNT only)
BOOL GetHandleInformation(
HANDLE hObject,
LPDWORD lpdwFlags
);
DECLARE INTEGER GetHandleInformation IN kernel32;
INTEGER hObject,;
INTEGER @ lpdwFlags
hObject [in] Handle to an object whose information is to be retrieved.
lpdwFlags [out] Pointer to a variable that receives a set of bit flags that specify properties of the object handle.
If the function succeeds, the return value is nonzero.
You can specify a handle to one of the following types of objects: access token, event, file, file mapping, job, mailslot, mutex, pipe, printer, process, registry key, semaphore, serial communication device, socket, thread, or waitable timer.
See also: SetHandleInformation.