Delink ActorShopItem.cpp (#147)

* Make types compatible with dsd-ghidra typesync

* Update actors.md

* Update docs

* Delink ActorShopItem.cpp
This commit is contained in:
Aetias
2026-04-16 23:10:14 +02:00
committed by GitHub
parent 81f4540e6c
commit 38e9378f8f
17 changed files with 669 additions and 22 deletions
+5 -1
View File
@@ -1,7 +1,9 @@
#ifndef _C_STDARG_H
#define _C_STDARG_H
#ifdef __cplusplus
extern "C" {
#endif
typedef char *va_list;
#define __std(ref) ::std::ref
@@ -11,7 +13,9 @@ typedef char *va_list;
#define va_start(ap, parm) ((ap) = __va_start(parm))
#define va_arg(ap, type) (*(type *) ((ap += __fourbytealign(sizeof(type))) - __fourbytealign(sizeof(type))))
#define va_end(ap) ((void) 0)
}
#ifdef __cplusplus
} // extern "C"
#endif
#if defined(__cplusplus)
namespace std {