diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:09:42 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-03-12 21:27:37 +0100 |
commit | 24c4029c96fa04b3cb4f90fbb36dc5248dd39810 (patch) | |
tree | ca51727f97207117f335f0309c063ffd2f168f2d /src/core/core-upgrade.h | |
parent | bb346f8c6c62655a6ef8fe4bc848d179258ce008 (diff) | |
download | weechat-24c4029c96fa04b3cb4f90fbb36dc5248dd39810.zip |
core: remove "wee-" prefix from source files in src/core and src/core/hook
Diffstat (limited to 'src/core/core-upgrade.h')
-rw-r--r-- | src/core/core-upgrade.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/core/core-upgrade.h b/src/core/core-upgrade.h new file mode 100644 index 000000000..24c413f8b --- /dev/null +++ b/src/core/core-upgrade.h @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2003-2024 Sébastien Helleu <flashcode@flashtux.org> + * + * This file is part of WeeChat, the extensible chat client. + * + * WeeChat 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. + * + * WeeChat 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 WeeChat. If not, see <https://www.gnu.org/licenses/>. + */ + +#ifndef WEECHAT_UPGRADE_H +#define WEECHAT_UPGRADE_H + +#include "core-upgrade-file.h" + +#define WEECHAT_UPGRADE_FILENAME "weechat" + +/* For developers: please add new values ONLY AT THE END of enums */ + +enum t_upgrade_weechat_type +{ + UPGRADE_WEECHAT_TYPE_HISTORY = 0, + UPGRADE_WEECHAT_TYPE_BUFFER, + UPGRADE_WEECHAT_TYPE_NICKLIST, + UPGRADE_WEECHAT_TYPE_BUFFER_LINE, + UPGRADE_WEECHAT_TYPE_MISC, + UPGRADE_WEECHAT_TYPE_HOTLIST, + UPGRADE_WEECHAT_TYPE_LAYOUT_WINDOW, +}; + +int upgrade_weechat_save (); +int upgrade_weechat_load (); +void upgrade_weechat_end (); + +#endif /* WEECHAT_UPGRADE_H */ |