WindowsXP/base/win32/fusion/w32/findclose.cpp
2025-04-27 07:49:33 -04:00

11 lines
103 B
C++

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