1
0
Fork 0

Some better const usage.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2586
This commit is contained in:
Peter Veenstra 2006-04-08 19:41:49 +00:00
parent 970b0a4842
commit 3b7451fe35
3 changed files with 53 additions and 51 deletions

View file

@ -26,7 +26,7 @@ enum MapKeys {
};
typedef void (MAPPER_Handler)(bool pressed);
void MAPPER_AddHandler(MAPPER_Handler * handler,MapKeys key,Bitu mods,char * eventname,char * buttonname);
void MAPPER_AddHandler(MAPPER_Handler * handler,MapKeys key,Bitu mods,char const * const eventname,char const * const buttonname);
void MAPPER_Init(void);
void MAPPER_StartUp(Section * sec);
void MAPPER_Run(bool pressed);