RetroArch/wii/wiiuse/lwp_wkspace.inl
twinaphex 5ee38b157d (Wii) Add customized Wiiuse - should reduce overall input latency
(also debloats - no Guitar Hero 3/Wii Board/key down/key up)
2013-01-07 04:10:16 +01:00

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