X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=mupen64plus-pandora.git;a=blobdiff_plain;f=source%2Fgles2glide64%2Fsrc%2FGlide64%2Fosal_dynamiclib.h;h=7be0cab272df0715eb578fc14a3b994474a59bfc;hp=c24377b178e0cebd91b181a408dde34b2d6339f7;hb=2d26287291331f2b1793a8e76ede08c75654fb7c;hpb=01d8ca6fb06a8261602900cab63c61e5a1b143c9 diff --git a/source/gles2glide64/src/Glide64/osal_dynamiclib.h b/source/gles2glide64/src/Glide64/osal_dynamiclib.h index c24377b..7be0cab 100755 --- a/source/gles2glide64/src/Glide64/osal_dynamiclib.h +++ b/source/gles2glide64/src/Glide64/osal_dynamiclib.h @@ -1,5 +1,5 @@ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - * Mupen64plus-core - osal/dynamiclib.h * + * Mupen64plus-video-glide64mk2 - osal_dynamiclib.h * * Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ * * Copyright (C) 2009 Richard Goedeken * * * @@ -22,14 +22,18 @@ #if !defined(OSAL_DYNAMICLIB_H) #define OSAL_DYNAMICLIB_H +#include "m64p_types.h" + #ifdef __cplusplus extern "C" { #endif -#include "m64p_types.h" +m64p_error osal_dynlib_open(m64p_dynlib_handle *pLibHandle, const char *pccLibraryPath); void * osal_dynlib_getproc(m64p_dynlib_handle LibHandle, const char *pccProcedureName); +m64p_error osal_dynlib_close(m64p_dynlib_handle LibHandle); + #ifdef __cplusplus } #endif