mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
keys.c (History_Init): Made global again.
(History_Shutdown): Likewise. keys.h: Added prototypes for History_Init and History_Shutdown. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@230 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
ad8f2e7a7b
commit
d96f32d4b8
2 changed files with 6 additions and 3 deletions
|
@ -683,7 +683,7 @@ void Key_WriteBindings (FILE *f)
|
|||
}
|
||||
|
||||
|
||||
static void History_Init (void)
|
||||
void History_Init (void)
|
||||
{
|
||||
int i, c;
|
||||
FILE *hf;
|
||||
|
@ -717,7 +717,7 @@ static void History_Init (void)
|
|||
}
|
||||
}
|
||||
|
||||
static void History_Shutdown (void)
|
||||
void History_Shutdown (void)
|
||||
{
|
||||
int i;
|
||||
FILE *hf;
|
||||
|
|
|
@ -155,5 +155,8 @@ void Key_WriteBindings (FILE *f);
|
|||
void Key_SetBinding (int keynum, char *binding);
|
||||
void Key_ClearStates (void);
|
||||
|
||||
void History_Init (void);
|
||||
void History_Shutdown (void);
|
||||
|
||||
#endif /* _QUAKE_KEYS_H */
|
||||
|
||||
|
|
Loading…
Reference in a new issue