Commit 98b2e381 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

_findclose() exists on MinGW, so prefix it.

parent 73ea238f
......@@ -202,7 +202,7 @@ int _chdrive(int newdrive)
* NOTES
* See FindClose.
*/
int _findclose(long hand)
int MSVCRT__findclose(long hand)
{
TRACE(":handle %ld\n",hand);
if (!FindClose((HANDLE)hand))
......
......@@ -225,7 +225,7 @@
@ cdecl _filelength(long)
@ cdecl -ret64 _filelengthi64(long)
@ cdecl _fileno(ptr) MSVCRT__fileno
@ cdecl _findclose(long)
@ cdecl _findclose(long) MSVCRT__findclose
@ cdecl _findfirst(str ptr) MSVCRT__findfirst
@ cdecl _findfirsti64(str ptr) MSVCRT__findfirsti64
@ cdecl _findnext(long ptr) MSVCRT__findnext
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment