summaryrefslogtreecommitdiff
path: root/lib9p/protogen/c.py
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-02 17:28:53 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-02 20:44:53 -0600
commit46c24939e2e0f41f0719289cd3b491367cf3355e (patch)
treec31676d0abc4a56a16791f5b3bbccbdc48b7bc00 /lib9p/protogen/c.py
parentf41d9a88c07226d107b56873bdbc801e484b524e (diff)
lib9p: Add lo_box_lib9p_msg_as_fmt_formatter() to tables
Diffstat (limited to 'lib9p/protogen/c.py')
-rw-r--r--lib9p/protogen/c.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib9p/protogen/c.py b/lib9p/protogen/c.py
index 722db7f..a6824ce 100644
--- a/lib9p/protogen/c.py
+++ b/lib9p/protogen/c.py
@@ -156,7 +156,12 @@ def gen_c(versions: set[str], typs: list[idl.UserType]) -> str:
return ret
ret += "\n"
- ret += f"#define _MSG(typ) [{c9util.Ident('TYP_')}##typ] = {{.name=#typ}}\n"
+ ret += cutil.macro(
+ f"#define _MSG(typ) [{c9util.Ident('TYP_')}##typ] = {{\n"
+ f"\t\t.name = #typ,\n"
+ f"\t\t.box_as_fmt_formatter = (_box_as_fmt_formatter_fn_t)lo_box_{c9util.ident('msg_')}##typ##_as_fmt_formatter,\n"
+ f"\t}}\n"
+ )
ret += msg_table("_msg_tentry", "_table_msg", "_MSG", (0, 0x100, 1))
ret += "\n"