mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-06-16 04:43:08 +00:00
14 lines
No EOL
487 B
C
14 lines
No EOL
487 B
C
#ifndef SMLUA_COBJECT_ALLOWLIST_H
|
|
#define SMLUA_COBJECT_ALLOWLIST_H
|
|
|
|
void smlua_cobject_allowlist_init(void);
|
|
void smlua_cobject_allowlist_shutdown(void);
|
|
void smlua_cobject_allowlist_add(u16 lot, u64 pointer);
|
|
bool smlua_cobject_allowlist_contains(u16 lot, u64 pointer);
|
|
|
|
void smlua_cpointer_allowlist_init(void);
|
|
void smlua_cpointer_allowlist_shutdown(void);
|
|
void smlua_cpointer_allowlist_add(u16 lvt, u64 pointer);
|
|
bool smlua_cpointer_allowlist_contains(u16 lvt, u64 pointer);
|
|
|
|
#endif |