mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 11:04:52 -08:00
56 lines
772 B
Plaintext
56 lines
772 B
Plaintext
|
# HEADER COMMENT
|
||
|
1, 166
|
||
|
|
||
|
# CODE TYPES
|
||
|
Invalid
|
||
|
Untyped
|
||
|
Enum
|
||
|
Enum_Body
|
||
|
Global_Body
|
||
|
Parameters
|
||
|
Proc
|
||
|
Proc_Body
|
||
|
Proc_Forward
|
||
|
Specifiers
|
||
|
Struct
|
||
|
Struct_Body
|
||
|
Variable
|
||
|
Typedef
|
||
|
Typename
|
||
|
Using
|
||
|
|
||
|
# CODE_HAS_ENTRIES
|
||
|
|
||
|
# SPECIFIER_TYPES
|
||
|
Attribute
|
||
|
Alignas
|
||
|
Constexpr
|
||
|
Const
|
||
|
Inline
|
||
|
Pointer
|
||
|
API_Import
|
||
|
API_Export
|
||
|
External_Linkage
|
||
|
Internal_Linkage
|
||
|
Local_Persist
|
||
|
Thread_Local
|
||
|
Invalid
|
||
|
|
||
|
# SPECIFIER_STRINGS
|
||
|
"alignas",
|
||
|
"const",
|
||
|
"inline",
|
||
|
"*",
|
||
|
#if defined(ZPL_SYSTEM_WINDOWS)
|
||
|
"__declspec(dllexport)",
|
||
|
"__declspec(dllimport)",
|
||
|
#elif defined(ZPL_SYSTEM_MACOS)
|
||
|
"__attribute__ ((visibility (\"default\")))",
|
||
|
"__attribute__ ((visibility (\"default\")))",
|
||
|
#endif
|
||
|
"extern",
|
||
|
"static",
|
||
|
"static",
|
||
|
"thread_local"
|
||
|
|