mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
19 lines
286 B
C
19 lines
286 B
C
#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_FORMAT 4
|
|
|
|
#define WSFS_BAD_NOENTRY 101
|
|
#define WSFS_BAD_NOACCESS 102
|
|
|
|
typedef int wsfs_status;
|
|
|
|
|
|
#endif
|
|
|