Skip to content
Snippets Groups Projects
Commit 3cc97356 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Looks like that worked... intptr_t the rest.

parent cb0dbdaf
No related branches found
No related tags found
No related merge requests found
Pipeline #5936 passed
......@@ -522,7 +522,7 @@ bool fexist(const char *filespec)
{
#if defined(_WIN32)
long handle;
intptr_t handle;
struct _finddata_t f;
bool found;
......@@ -584,7 +584,7 @@ bool fexistcase(char *path)
#if defined(_WIN32)
char* fname;
long handle;
intptr_t handle;
struct _finddata_t f;
if(access(path, F_OK)==-1 && !strchr(path,'*') && !strchr(path,'?'))
......@@ -693,7 +693,7 @@ bool isdir(const char *filename)
int getfattr(const char* filename)
{
#if defined(_WIN32)
long handle;
intptr_t handle;
struct _finddata_t finddata;
if((handle=_findfirst((char*)filename,&finddata))==-1) {
......
......@@ -137,7 +137,7 @@ extern "C" {
{
char filespec[260];
struct dirent dirent;
long handle;
intptr_t handle;
struct _finddata_t finddata;
bool end; /* End of directory flag */
} DIR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment