windows-nt/Source/XPSP1/NT/base/win32/fusion/w32/closehandle.cpp

11 lines
97 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <stdinc.h>
BOOL
W32::CloseHandle(
HANDLE h
)
{
return ::CloseHandle(h);
}