mirror of
https://git.sr.ht/~cismonx/bookmarkfs
synced 2025-06-07 19:58:50 +00:00
71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
/**
|
|
* bookmarkfs/src/common.h
|
|
* ----
|
|
*
|
|
* Copyright (C) 2024 CismonX <admin@cismon.net>
|
|
*
|
|
* This file is part of BookmarkFS.
|
|
*
|
|
* BookmarkFS is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* BookmarkFS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with BookmarkFS. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef BOOKMARKFS_COMMON_H_
|
|
#define BOOKMARKFS_COMMON_H_
|
|
|
|
#include <limits.h>
|
|
#include <stdint.h>
|
|
|
|
struct bookmarkfs_conf_opt {
|
|
char *key;
|
|
char *val;
|
|
|
|
struct bookmarkfs_conf_opt *next;
|
|
};
|
|
|
|
enum bookmarkfs_fsck_result {
|
|
BOOKMARKFS_FSCK_RESULT_END = 0, // must be 0
|
|
BOOKMARKFS_FSCK_RESULT_NAME_DUPLICATE,
|
|
BOOKMARKFS_FSCK_RESULT_NAME_BADCHAR,
|
|
BOOKMARKFS_FSCK_RESULT_NAME_BADLEN,
|
|
BOOKMARKFS_FSCK_RESULT_NAME_DOTDOT,
|
|
BOOKMARKFS_FSCK_RESULT_NAME_INVALID,
|
|
};
|
|
|
|
/**
|
|
* Predefined reason codes for BOOKMARKFS_FSCK_RESULT_NAME_INVALID.
|
|
*/
|
|
enum {
|
|
BOOKMARKFS_NAME_INVALID_REASON_NOTUTF8 = 256,
|
|
};
|
|
|
|
enum bookmarkfs_permd_op {
|
|
BOOKMARKFS_PERMD_OP_SWAP,
|
|
BOOKMARKFS_PERMD_OP_MOVE_BEFORE,
|
|
BOOKMARKFS_PERMD_OP_MOVE_AFTER,
|
|
};
|
|
|
|
struct bookmarkfs_fsck_data {
|
|
uint64_t id;
|
|
uint64_t extra;
|
|
char name[NAME_MAX + 1];
|
|
};
|
|
|
|
struct bookmarkfs_permd_data {
|
|
enum bookmarkfs_permd_op op;
|
|
|
|
char name1[NAME_MAX + 1];
|
|
char name2[NAME_MAX + 1];
|
|
};
|
|
|
|
#endif /* !defined(BOOKMARKFS_COMMON_H_) */
|