aboutsummaryrefslogtreecommitdiffstats
path: root/util/folder/lstat_win.h
blob: 10152db2b5645b90ce7f77e84731b0c60cd17b39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
 
#include <util/system/defaults.h>
#include "fts.h"
 
#ifdef _win_ 
    #include <sys/stat.h>
 
    #ifdef __cplusplus
extern "C" { 
    #endif
 
    #define _S_IFLNK 0xA000
    int lstat(const char* fileName, stat_struct* fileStat);
 
    #ifdef __cplusplus
} 
    #endif
 
#endif //_win_