Changeset 2623 for trunk/src/NTDLL/file.cpp
- Timestamp:
- Feb 3, 2000, 10:46:42 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NTDLL/file.cpp
r97 r2623 1 /* $Id: file.cpp,v 1. 2 1999-06-10 17:06:45 phallerExp $ */1 /* $Id: file.cpp,v 1.3 2000-02-03 21:46:42 sandervl Exp $ */ 2 2 3 3 /* … … 13 13 14 14 #include "ntdll.h" 15 16 17 //******************************************************************************18 //NtClose has to call CloseHandle since the Handlemanager has to be19 //called.20 //******************************************************************************21 NTSTATUS WIN32API NtClose(HANDLE hHandle)22 {23 dprintf(("NTDLL: NtClose(%08x) not properly implemented.\n",24 hHandle));25 26 /* @@@PH 98/05/05 function from NTDLL */27 return (CloseHandle(hHandle));28 }29 30 15 31 16
Note:
See TracChangeset
for help on using the changeset viewer.