X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=source%2Fmupen64plus-core%2Fsrc%2Fmain%2Fmain.h;fp=source%2Fmupen64plus-core%2Fsrc%2Fmain%2Fmain.h;h=d034c909e469d0c2164791730cc77b3447a834b7;hb=451ab91e3827a6384981b3300e2a7000d2eaba58;hp=0000000000000000000000000000000000000000;hpb=a2ab25365b5b0dddbee476d695d8a31151407581;p=mupen64plus-pandora.git diff --git a/source/mupen64plus-core/src/main/main.h b/source/mupen64plus-core/src/main/main.h new file mode 100644 index 0000000..d034c90 --- /dev/null +++ b/source/mupen64plus-core/src/main/main.h @@ -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__ */ +