mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 14:57:46 -04:00
gp2x->common menu migration finished, gp2x now only uses input fwk
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@692 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2c60056042
commit
82abf46f3d
22 changed files with 207 additions and 1765 deletions
|
@ -1,5 +1,21 @@
|
|||
#define IN_MAX_DEVS 10
|
||||
|
||||
/* unified menu keys */
|
||||
#define PBTN_UP (1 << 0)
|
||||
#define PBTN_DOWN (1 << 1)
|
||||
#define PBTN_LEFT (1 << 2)
|
||||
#define PBTN_RIGHT (1 << 3)
|
||||
|
||||
#define PBTN_MOK (1 << 4)
|
||||
#define PBTN_MBACK (1 << 5)
|
||||
#define PBTN_MA2 (1 << 6) /* menu action 2 */
|
||||
#define PBTN_MA3 (1 << 7)
|
||||
|
||||
#define PBTN_L (1 << 8)
|
||||
#define PBTN_R (1 << 9)
|
||||
|
||||
#define PBTN_MENU (1 << 10)
|
||||
|
||||
enum {
|
||||
IN_DRVID_UNKNOWN = 0,
|
||||
IN_DRVID_GP2X,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue