Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glitch64/m64p.h
2 views
/******************************************************************************1* Glide64 - Glide video plugin for Nintendo 64 emulators.2* http://bitbucket.org/wahrhaft/mupen64plus-video-glide64/3*4* Copyright (C) 2010 Jon Ring5*6* This program is free software; you can redistribute it and/or7* modify it under the terms of the GNU General Public License8* as published by the Free Software Foundation; either version 29* of the License, or (at your option) any later version.10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.19*****************************************************************************/2021#ifndef M64P_H22#define M64P_H2324#include "m64p_types.h"25#include "m64p_config.h"26#include "m64p_vidext.h"2728extern ptr_ConfigOpenSection ConfigOpenSection;29extern ptr_ConfigGetParamInt ConfigGetParamInt;30extern ptr_ConfigGetParamBool ConfigGetParamBool;3132extern ptr_VidExt_Init CoreVideo_Init;33extern ptr_VidExt_Quit CoreVideo_Quit;34extern ptr_VidExt_ListFullscreenModes CoreVideo_ListFullscreenModes;35extern ptr_VidExt_SetVideoMode CoreVideo_SetVideoMode;36extern ptr_VidExt_SetCaption CoreVideo_SetCaption;37extern ptr_VidExt_ToggleFullScreen CoreVideo_ToggleFullScreen;38extern ptr_VidExt_GL_GetProcAddress CoreVideo_GL_GetProcAddress;39extern ptr_VidExt_GL_SetAttribute CoreVideo_GL_SetAttribute;40extern ptr_VidExt_GL_SwapBuffers CoreVideo_GL_SwapBuffers;4142#endif434445