mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
18 lines
286 B
C
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
|