summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-18 17:57:10 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-18 19:46:32 +0100
commitdd710175cac03021ba863a60be3875dc2eded125 (patch)
tree7b1c3b90f8e9b7173fc634de1a90f4242c0852e3 /crawl-ref/source/macro.h
parent194ed9dabfe4cfb29a64235996589c02af730111 (diff)
downloadcrawl-ref-dd710175cac03021ba863a60be3875dc2eded125.tar.gz
crawl-ref-dd710175cac03021ba863a60be3875dc2eded125.zip
Move insert_commands() methods into macro.cc.
Diffstat (limited to 'crawl-ref/source/macro.h')
-rw-r--r--crawl-ref/source/macro.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/macro.h b/crawl-ref/source/macro.h
index 46f2663d93..c2d4187a48 100644
--- a/crawl-ref/source/macro.h
+++ b/crawl-ref/source/macro.h
@@ -96,5 +96,7 @@ KeymapContext context_for_command(command_type cmd);
void bind_command_to_key(command_type cmd, int key);
std::string command_to_string(command_type cmd);
+void insert_commands(std::string &desc, std::vector<command_type> cmds);
+void insert_commands(std::string &desc, const int first, ...);
void list_all_commands(std::string &commands);
#endif