summaryrefslogtreecommitdiffstats
path: root/src/include/win32/fs_compat.h
blob: c3405e670f95f38d126eed61d26212557eff8892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2021 SUSE LINUX GmbH
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation.  See file COPYING.
 *
 */

// Those definitions allow handling information coming from Ceph and should
// not be passed to Windows functions.

#define S_IFLNK   0120000

#define S_ISTYPE(m, TYPE) ((m & S_IFMT) == TYPE)
#define S_ISLNK(m)  S_ISTYPE(m, S_IFLNK)
#define S_ISUID     04000
#define S_ISGID     02000
#define S_ISVTX     01000

#define LOCK_SH    1
#define LOCK_EX    2
#define LOCK_NB    4
#define LOCK_UN    8
#define LOCK_MAND  32
#define LOCK_READ  64
#define LOCK_WRITE 128
#define LOCK_RW    192

#define AT_SYMLINK_NOFOLLOW 0x100
#define AT_REMOVEDIR        0x200

#define MAXSYMLINKS  65000