mirror of
https://github.com/libretro/RACE.git
synced 2024-11-23 08:59:49 +00:00
26 lines
629 B
C
26 lines
629 B
C
/*---------------------------------------------------------------------------
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version. See also the license.txt file for
|
|
* additional informations.
|
|
*
|
|
*/
|
|
|
|
/* input.h: interface for the input class. */
|
|
|
|
#ifndef AFX_INPUT_H
|
|
#define AFX_INPUT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern unsigned char ngpInputState;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !defined(AFX_INPUT_H) */
|