debug.c needs dylib.h.
[SquirrelJME.git] / nanocoat / frontend / libretro / ext.c
blob1c2ffe91ad8ff8940a9107cf4027486d444aec13
1 /* -*- Mode: C; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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(
16 sjme_lpcstr sym)
18 return NULL;
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;