- Migrate from set_global/get_global to ctx_set/ctx_get - Replace if-else chains with match() expressions - Update inline pointer handling patterns - Improve GfxWorld and asset parsing structures - Clean up redundant code across 60+ definition files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
type columninfo [display="Column Info"]
|
|
{
|
|
// columnInfo_s - 16 bytes total
|
|
i32 pos;
|
|
|
|
ui("pos", "Pos");
|
|
i32 width;
|
|
|
|
ui("width", "Width");
|
|
i32 max_chars;
|
|
|
|
ui("max_chars", "Max Chars");
|
|
i32 alignment;
|
|
|
|
ui("alignment", "Alignment");
|
|
}
|