Files
gamestabled a87ddae432 Attempt to pull GLOBAL_ASMs for actor functions into their correct source files (#17)
* pull known Actor functions GLOBAL_ASMs into their cpp files

* attempt to pull unidentified actor functions GLOBAL_ASMs into their corresponding source files by scanning the call-graph
2026-09-04 15:43:43 -04:00

13 lines
148 B
C++

#ifndef _STDDEF_H_
#define _STDDEF_H_
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void*)0)
#endif
typedef unsigned int size_t;
#endif