Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.11 KB

CeCloseHandle.md

File metadata and controls

49 lines (33 loc) · 1.11 KB

Home

Function name : CeCloseHandle

Group: Remote Application Programming (RAPI) - Library: rapi


This function closes an open object handle.


Code examples:

Pocket PC: base class
Pocket PC: custom RAPI class for operating with files and folders on mobile device
PocketPC: custom RAPI class for executing routines on remote Windows CE device

Declaration:

BOOL CeCloseHandle(
  HANDLE hObject
);  

FoxPro declaration:

DECLARE INTEGER CeCloseHandle IN rapi;
	INTEGER hObject  

Parameters:

hObject [in] Handle to an open object.


Return value:

Nonzero indicates success.


Comments:

Use CeCloseHandle to close handles returned by calls to the CeCreateFile function. Use CeFindClose to close handles returned by calls to the CeFindFirstFile function.