seafile/daemon/seafile-error-impl.h
2019-08-21 14:54:09 +08:00

19 lines
272 B
C

#ifndef SEAFILE_ERROR_IMPL_H
#define SEAFILE_ERROR_IMPL_H
#include "seafile-error.h"
enum {
SYNC_ERROR_LEVEL_REPO,
SYNC_ERROR_LEVEL_FILE,
SYNC_ERROR_LEVEL_NETWORK,
};
const char *
sync_error_id_to_str (int error);
int
sync_error_level (int error);
#endif