Core commit. Compile and run on the OpenPandora
[mupen64plus-pandora.git] / source / mupen64plus-core / src / main / main.h
diff --git a/source/mupen64plus-core/src/main/main.h b/source/mupen64plus-core/src/main/main.h
new file mode 100644 (file)
index 0000000..d034c90
--- /dev/null
@@ -0,0 +1,77 @@
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ *   Mupen64plus - main.h                                                  *
+ *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
+ *   Copyright (C) 2012 CasualJames                                        *
+ *   Copyright (C) 2002 Blight                                             *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
+ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+#ifndef __MAIN_H__
+#define __MAIN_H__
+
+#include "api/m64p_types.h"
+
+/* globals */
+extern m64p_handle g_CoreConfig;
+
+extern int g_MemHasBeenBSwapped;
+extern int g_EmulatorRunning;
+
+extern m64p_frame_callback g_FrameCallback;
+
+const char* get_savestatepath(void);
+const char* get_savesrampath(void);
+
+void new_frame(void);
+void new_vi(void);
+
+int  main_set_core_defaults(void);
+void main_message(m64p_msg_level level, unsigned int osd_corner, const char *format, ...);
+
+m64p_error main_run(void);
+void main_stop(void);
+void main_toggle_pause(void);
+void main_advance_one(void);
+
+void main_speedup(int percent);
+void main_speeddown(int percent);
+void main_set_fastforward(int enable);
+
+void main_take_next_screenshot(void);
+
+void main_state_set_slot(int slot);
+void main_state_inc_slot(void);
+void main_state_load(const char *filename);
+void main_state_save(int format, const char *filename);
+
+m64p_error main_core_state_query(m64p_core_param param, int *rval);
+m64p_error main_core_state_set(m64p_core_param param, int val);
+
+m64p_error main_get_screen_size(int *width, int *height);
+m64p_error main_read_screen(void *pixels, int bFront);
+
+m64p_error main_volume_up(void);
+m64p_error main_volume_down(void);
+m64p_error main_volume_get_level(int *level);
+m64p_error main_volume_set_level(int level);
+m64p_error main_volume_mute(void);
+int        main_volume_get_muted(void);
+
+m64p_error main_reset(int do_hard_reset);
+
+#endif /* __MAIN_H__ */
+