1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 18:53:12 +02:00

core: split plugin-api.c into 2 files (API wrappers and infos/infolists)

This commit is contained in:
Sébastien Helleu
2018-11-03 23:01:46 +01:00
parent 6d72868e15
commit a8b6fa08b7
11 changed files with 1877 additions and 1786 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* Copyright (C) 2003-2018 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 <http://www.gnu.org/licenses/>.
*/
#ifndef WEECHAT_PLUGIN_PLUGIN_API_INFO_H
#define WEECHAT_PLUGIN_PLUGIN_API_INFO_H
extern void plugin_api_info_init ();
#endif /* WEECHAT_PLUGIN_PLUGIN_API_INFO_H */