2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2016-05-22 19:06:01 -04:00
|
|
|
* cmd_defs.h
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2017-01-28 12:24:22 -05:00
|
|
|
* Copyright (C) 2012 - 2017 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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.
|
|
|
|
*
|
|
|
|
* Profanity 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
*/
|
|
|
|
|
2016-07-24 09:51:39 -04:00
|
|
|
#ifndef COMMAND_CMD_DEFS_H
|
|
|
|
#define COMMAND_CMD_DEFS_H
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <glib.h>
|
|
|
|
|
2015-06-16 17:59:08 -04:00
|
|
|
#include "ui/ui.h"
|
2014-10-18 18:16:19 -04:00
|
|
|
|
2012-08-22 19:30:11 -04:00
|
|
|
void cmd_init(void);
|
2013-12-15 11:10:32 -05:00
|
|
|
void cmd_uninit(void);
|
2012-10-27 20:42:26 -04:00
|
|
|
|
2016-05-22 19:31:00 -04:00
|
|
|
Command* cmd_get(const char *const command);
|
|
|
|
GList* cmd_get_ordered(const char *const tag);
|
|
|
|
|
2015-10-24 19:26:42 -04:00
|
|
|
gboolean cmd_valid_tag(const char *const str);
|
2015-07-26 20:06:10 -04:00
|
|
|
|
2015-02-07 19:42:21 -05:00
|
|
|
void command_docgen(void);
|
|
|
|
|
2012-02-09 18:15:53 -05:00
|
|
|
#endif
|