mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-10 00:00:05 +00:00
23 lines
445 B
C
23 lines
445 B
C
|
#ifndef SHELLCMD_H
|
||
|
#define SHELLCMD_H
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "sclient.h"
|
||
|
|
||
|
typedef void (*shellCmdCallback)(tShell_client *client, int args, char *argc[]);
|
||
|
|
||
|
typedef struct sShell_cmdDef {
|
||
|
const char *cmd;
|
||
|
const char *help;
|
||
|
shellCmdCallback callback;
|
||
|
} tShell_cmdDef;
|
||
|
|
||
|
extern tShell_cmdDef shellS_cmds[];
|
||
|
|
||
|
void shellS_initCmds(void);
|
||
|
void shellS_cleanupCmds(void);
|
||
|
|
||
|
void shellS_runCmd(tShell_client *client, char *cmd);
|
||
|
|
||
|
#endif
|