mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
14 lines
271 B
C
14 lines
271 B
C
#include <precomp.h>
|
|
#include <tchar.h>
|
|
#include <io.h>
|
|
|
|
// Generate _findfirst64 and _findnext64
|
|
#undef _findfirst
|
|
#define _findfirst _findfirst64
|
|
#undef _findnext
|
|
#define _findnext _findnext64
|
|
#undef _finddata_t
|
|
#define _finddata_t __finddata64_t
|
|
|
|
#include "findgen.c"
|