| #include <io.h> |
| #include <string.h> |
| |
| intptr_t __cdecl _findfirst32(const char *_Filename, struct _finddata32_t *_FindData) |
| { |
| struct __finddata64_t fd; |
| intptr_t ret = _findfirst64(_Filename, &fd); |
| if (ret == -1) |
| return -1; |
| _FindData->attrib = fd.attrib; |
| _FindData->time_create = fd.time_create; |
| _FindData->time_access = fd.time_access; |
| _FindData->time_write = fd.time_write; |
| _FindData->size = (_fsize_t)fd.size; |
| _Static_assert(sizeof(_FindData->name) == sizeof(fd.name), "mismatch size of _FindData->name and fd.name"); |
| memcpy(_FindData->name, fd.name, sizeof(_FindData->name)); |
| return ret; |
| } |
| intptr_t (__cdecl *__MINGW_IMP_SYMBOL(_findfirst32))(const char *, struct _finddata32_t *) = _findfirst32; |