pokeplatinum/lib/NitroDWC/include/auth/util_alloc.h
luckytyphlosion 320da2296d Move around library includes.
Old structure: put everything in lib/include
New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
2023-01-05 18:53:16 -05:00

18 lines
286 B
C

#ifndef DWC_UTIL_ALLOC_H_
#define DWC_UTIL_ALLOC_H_
#include <nitro.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void *(* DWCAuthAlloc)(unsigned long name, long size);
typedef void (* DWCAuthFree)(unsigned long name, void * ptr, long size);
#ifdef __cplusplus
}
#endif
#endif