diff --git a/src/core/commands.h b/src/core/commands.h index 3842ae7..3f67f11 100644 --- a/src/core/commands.h +++ b/src/core/commands.h @@ -141,4 +141,8 @@ extern struct hub_command* command_parse(struct command_base* cbase, const struc */ extern void command_free(struct hub_command* command); + +extern void commands_builtin_add(struct command_base*); +extern void commands_builtin_remove(struct command_base*); + #endif /* HAVE_UHUB_COMMANDS_H */ diff --git a/src/core/commands_builtin.c b/src/core/commands_builtin.c deleted file mode 100644 index e69de29..0000000 diff --git a/src/core/commands_builtin.h b/src/core/commands_builtin.h deleted file mode 100644 index af19fa5..0000000 --- a/src/core/commands_builtin.h +++ /dev/null @@ -1,3 +0,0 @@ - -void commands_builtin_add(struct command_base*); -void commands_builtin_remove(struct command_base*); \ No newline at end of file diff --git a/src/uhub.h b/src/uhub.h index 8321240..224cab3 100644 --- a/src/uhub.h +++ b/src/uhub.h @@ -90,7 +90,6 @@ extern "C" { #include "core/pluginloader.h" #include "core/hub.h" #include "core/commands.h" -#include "core/commands_builtin.h" #include "core/inf.h" #include "core/hubevent.h" #include "core/plugincallback.h"