1 /* -*- Mode: C; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // -------------------------------------------------------------------------*/
10 #include "sjme/nvm/nvm.h"
11 #include "sjme/debug.h"
12 #include "3rdparty/libretro/libretro.h"
13 #include "frontend/libretro/shared.h"
15 static retro_proc_address_t RETRO_CALLCONV
sjme_libretro_extLookup(
21 const struct retro_get_proc_address_interface sjme_libretro_extInterfaceDef
=
23 .get_proc_address
= sjme_libretro_extLookup
,
26 const struct retro_get_proc_address_interface
* sjme_libretro_extInterface(void)
28 return &sjme_libretro_extInterfaceDef
;