mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 21:40:02 +00:00
5ee38b157d
(also debloats - no Guitar Hero 3/Wii Board/key down/key up)
15 lines
281 B
C++
15 lines
281 B
C++
#ifndef __LWP_WKSPACE_INL__
|
|
#define __LWP_WKSPACE_INL__
|
|
|
|
static __inline__ void* __lwp_wkspace_allocate(u32 size)
|
|
{
|
|
return __lwp_heap_allocate(&__wkspace_heap,size);
|
|
}
|
|
|
|
static __inline__ BOOL __lwp_wkspace_free(void *ptr)
|
|
{
|
|
return __lwp_heap_free(&__wkspace_heap,ptr);
|
|
}
|
|
|
|
#endif
|