1 #include <precomp.h> 2 #include <tchar.h> 3 #include <io.h> 4 5 // Generate _findfirst64 and _findnext64 6 #undef _findfirst 7 #define _findfirst _findfirst64 8 #undef _findnext 9 #define _findnext _findnext64 10 #undef _finddata_t 11 #define _finddata_t __finddata64_t 12 13 #include "findgen.c" 14