CloseHandle PROC
(MS-Windows)
Closes an open object handle.
Use to close handles returned by CreateFile.
Call GetLastError to get extended error
information.
CloseHandle PROTO, ; close file handle
handle:DWORD
Returns: (BOOL) EAX = TRUE (non-zero) if successful,
FALSE (zero) if fails.
|
| Argument | Win Type | MASM Type | Description |
|---|---|---|---|
| handle | HANDLE | DWORD | Handle to an open object. |
| Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |