From: notaz Date: Thu, 9 Dec 2010 15:57:13 +0000 (+0000) Subject: input: export defbind struct X-Git-Tag: v1.85~151 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72f3f17598c98c6726cf7f00caca1330b13e2680;p=picodrive.git input: export defbind struct git-svn-id: file:///home/notaz/opt/svn/PicoDrive@906 be3aeb3a-fb24-0410-a615-afba39da0efa --- diff --git a/platform/common/input.h b/platform/common/input.h index 4f4bfbc..41ff876 100644 --- a/platform/common/input.h +++ b/platform/common/input.h @@ -87,6 +87,11 @@ typedef struct { const char * (*get_key_name)(int keycode); } in_drv_t; +struct in_default_bind { + unsigned short code; + unsigned char btype; /* IN_BINDTYPE_* */ + unsigned char bit; +}; /* to be called by drivers */ void in_register(const char *nname, int drv_id, int drv_fd_hnd, void *drv_data,