1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 14:10:45 +00:00
falk-werner_webfuse-provider/include/wsfs/status.h

18 lines
316 B
C
Raw Normal View History

2019-03-04 20:18:16 +00:00
#ifndef WSFS_STATUS_H
#define WSFS_STATUS_H
#define WSFS_GOOD 0
#define WSFS_BAD 1
#define WSFS_BAD_NOTIMPLEMENTED 2
#define WSFS_BAD_TIMEOUT 3
#define WSFS_BAD_BUSY 4
#define WSFS_BAD_FORMAT 5
#define WSFS_BAD_NOENTRY 101
#define WSFS_BAD_NOACCESS 102
typedef int wsfs_status;
#endif