mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-10 00:00:05 +00:00
24 lines
469 B
C
24 lines
469 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;
|
|
const char *syntax;
|
|
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 |