Decompile much of musyx

This commit is contained in:
gamemasterplc 2023-12-30 09:01:00 -06:00
parent 572a5e5a58
commit 36c41780cf
9 changed files with 100 additions and 22 deletions

14
include/stdint.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _STDINT_H_
#define _STDINT_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned long int uintptr_t;
#ifdef __cplusplus
}
#endif
#endif