summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2012-02-10 08:58:01 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2012-02-10 08:58:01 +0100
commit191c95c1c2e747fb3279a03326e7ca3d7c13df05 (patch)
tree15744fc993096cefafb26fc60d4b22771a2629b4 /src/commands.h
parent0a4c488712152d299fe05c3ae19e3ecde5cb68ff (diff)
downloadcmumble-191c95c1c2e747fb3279a03326e7ca3d7c13df05.tar.gz
cmumble-191c95c1c2e747fb3279a03326e7ca3d7c13df05.tar.bz2
cmumble-191c95c1c2e747fb3279a03326e7ca3d7c13df05.zip
s/ctx/cm/g; s/struct cmumble_context/struct cmumlbe/g
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands.h b/src/commands.h
index a2cca59..24290af 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -1,17 +1,17 @@
#ifndef _COMMANDS_H_
#define _COMMANDS_H_
-struct cmumble_context;
+struct cmumlbe;
struct cmumble_command {
const char *name;
- void (*callback)(struct cmumble_context *,
+ void (*callback)(struct cmumlbe *,
int argc, char **argv);
const char *description;
};
void
-cmumble_commands_init(struct cmumble_context *ctx);
+cmumble_commands_init(struct cmumlbe *cm);
const char *
cmumble_command_expand_shortcut(const char *text);