aboutsummaryrefslogtreecommitdiffstats
path: root/util/folder/lstat_win.h
blob: 0bf7c19055b56058b99ad544653a6c062cc4ee5c (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_