49 lines
2.1 KiB
C
49 lines
2.1 KiB
C
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
|
* 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"
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct r4300_core;
|
||
|
struct rdp_core;
|
||
|
struct rsp_core;
|
||
|
struct ai_controller;
|
||
|
struct pi_controller;
|
||
|
struct ri_controller;
|
||
|
struct si_controller;
|
||
|
struct vi_controller;
|
||
|
|
||
|
enum { RDRAM_MAX_SIZE = 0x800000 };
|
||
|
|
||
|
/* globals */
|
||
|
void main_message(usf_state_t *, m64p_msg_level level, unsigned int osd_corner, const char *format, ...);
|
||
|
|
||
|
m64p_error main_start(usf_state_t *);
|
||
|
void main_run(usf_state_t *);
|
||
|
|
||
|
#endif /* __MAIN_H__ */
|
||
|
|