quakeforge/ruamoko/include/cmd.h
Jeff Teunissen 4bd37e7b64 Switch to C-style function declarations.
Doxygen hates the QuakeC-style function prototypes we use, so switch to the
C-style prototypes.
2010-12-11 20:31:59 -05:00

9 lines
242 B
C

#ifndef __ruamoko_cmd_h
#define __ruamoko_cmd_h
@extern void Cmd_AddCommand (string name, void () func);
@extern integer Cmd_Argc (void);
@extern string Cmd_Argv (integer arg);
@extern string Cmd_Args (integer arg);
#endif//__ruamoko_cmd_h