mirror of
https://github.com/haiwen/seafile.git
synced 2025-01-07 03:17:13 +08:00
19 lines
272 B
C
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
|