girara
commands.h
Go to the documentation of this file.
00001 /* See LICENSE file for license and copyright information */
00002 
00003 #ifndef GIRARA_COMMANDS_H
00004 #define GIRARA_COMMANDS_H
00005 
00006 #include "types.h"
00007 
00020 bool girara_inputbar_command_add(girara_session_t* session,
00021     const char* command, const char* abbreviation,
00022     girara_command_function_t function, girara_completion_function_t completion,
00023     const char* description);
00024 
00038 bool girara_special_command_add(girara_session_t* session, char identifier,
00039     girara_inputbar_special_function_t function, bool always, int argument_n,
00040     void* argument_data);
00041 
00042 #endif
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines