aboutsummaryrefslogtreecommitdiff
path: root/maemo/maemo_common.h
diff options
context:
space:
mode:
authornegativeExponent2019-08-17 09:31:06 +0800
committernegativeExponent2019-08-17 09:33:48 +0800
commit030d1121f27550429364745419fc5e6161a2a431 (patch)
tree90d83d5855981ad4558f5533a6d6bc2d4a19cfba /maemo/maemo_common.h
parentfcb84f0c6ad095c355d8c0835fc6c5fcdc2a6813 (diff)
downloadpcsx_rearmed-030d1121f27550429364745419fc5e6161a2a431.tar.gz
pcsx_rearmed-030d1121f27550429364745419fc5e6161a2a431.tar.bz2
pcsx_rearmed-030d1121f27550429364745419fc5e6161a2a431.zip
Backport GPU Unai plugin from PCSX4ALL
- backports gpu unai plugin from PCSX4ALL - sync necessary files with notaz/master to allow building standalone app
Diffstat (limited to 'maemo/maemo_common.h')
-rw-r--r--maemo/maemo_common.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/maemo/maemo_common.h b/maemo/maemo_common.h
new file mode 100644
index 0000000..ace0bfd
--- /dev/null
+++ b/maemo/maemo_common.h
@@ -0,0 +1,18 @@
+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;