mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-29 16:31:43 +00:00
- added script exports for Duke's iterators
This commit is contained in:
parent
5bc8b1c2d3
commit
c27976b2e5
5 changed files with 245 additions and 0 deletions
|
@ -708,6 +708,13 @@ struct AFuncDesc
|
|||
extern FieldDesc const *const VMGlobal_##name##_HookPtr; \
|
||||
MSVC_FSEG FieldDesc const *const VMGlobal_##name##_HookPtr GCC_FSEG = &VMGlobal_##name;
|
||||
|
||||
#define DEFINE_GLOBAL_UNSIZED(name) \
|
||||
static const FieldDesc VMGlobal_##name = { "", #name, (size_t)&name, ~0u, 0 }; \
|
||||
extern FieldDesc const *const VMGlobal_##name##_HookPtr; \
|
||||
MSVC_FSEG FieldDesc const *const VMGlobal_##name##_HookPtr GCC_FSEG = &VMGlobal_##name;
|
||||
|
||||
|
||||
|
||||
|
||||
class AActor;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue