11 lines
93 B
C++
11 lines
93 B
C++
|
#include <stdinc.h>
|
||
|
|
||
|
BOOL
|
||
|
W32::FindClose(
|
||
|
HANDLE h
|
||
|
)
|
||
|
{
|
||
|
return ::FindClose(h);
|
||
|
}
|
||
|
|