mirror of
https://github.com/libretro/xmil-libretro.git
synced 2024-11-23 08:09:42 +00:00
b1d72c8c86
refs #94 svn merge -r 273:274 https://amethyst.yui.ne.jp/svn-dev/x1/xmil/branches/yui/WORK_01
23 lines
275 B
C
23 lines
275 B
C
/**
|
|
* @file joymng.h
|
|
* @brief ジョイパッドの宣言およびインターフェイスの定義をします
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
|
|
void joymng_initialize();
|
|
bool joymng_isEnabled();
|
|
void joymng_sync();
|
|
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
REG8 joymng_getstat(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|