aboutsummaryrefslogtreecommitdiff
path: root/maemo/maemo_common.h
diff options
context:
space:
mode:
authorPaolo Iommarini2013-02-17 13:38:32 +0100
committerPaolo Iommarini2013-02-17 13:38:32 +0100
commita76fd9535db9b36dd4d8f2e6bc9d804db807907f (patch)
tree98deeed535caf0f0647d31fb6a7f066d5e6b556d /maemo/maemo_common.h
parent1ac804af759a1439428d57c41c05bdda0c59bc21 (diff)
downloadpcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.tar.gz
pcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.tar.bz2
pcsx_rearmed-a76fd9535db9b36dd4d8f2e6bc9d804db807907f.zip
Maemo ehancement
-Added command line options -Added pause on incoming call -Added change disc
Diffstat (limited to 'maemo/maemo_common.h')
-rw-r--r--maemo/maemo_common.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/maemo/maemo_common.h b/maemo/maemo_common.h
index 757b6f6..ace0bfd 100644
--- a/maemo/maemo_common.h
+++ b/maemo/maemo_common.h
@@ -1,4 +1,18 @@
-void maemo_init(int *argc, char ***argv);
+int maemo_init(int *argc, char ***argv);
+void maemo_finish();
extern char file_name[MAXPATHLEN];
extern int g_maemo_opts;
+
+extern inline void key_press_event(int key,int type);
+
+typedef struct
+{
+ int sens;
+ int y_def;
+ float maxValue;
+ float xMultiplier;
+ float yMultiplier;
+} accel_option;
+
+extern accel_option accelOptions;