windows-nt/Source/XPSP1/NT/base/win32/fusion/w32/findclose.cpp
2020-09-26 16:20:57 +08:00

11 lines
93 B
C++

#include <stdinc.h>
BOOL
W32::FindClose(
HANDLE h
)
{
return ::FindClose(h);
}