From 7906b6c8f6e71c05c4834fe806bbef4a2292de7f Mon Sep 17 00:00:00 2001 From: nakst <> Date: Sat, 5 Feb 2022 11:30:26 +0000 Subject: [PATCH] odin bindings add '#type' --- util/header_generator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/header_generator.c b/util/header_generator.c index 131cb6f..653e358 100644 --- a/util/header_generator.c +++ b/util/header_generator.c @@ -957,11 +957,11 @@ void OutputOdin(Entry *root) { FilePrintFormat(output, "}\n"); } else if (entry->type == ENTRY_API_TYPE) { bool hasParent = 0 != strcmp(entry->apiType.parent, "none"); - FilePrintFormat(output, "%s :: %s;\n", TrimPrefix(entry->name), hasParent ? TrimPrefix(entry->apiType.parent) : "rawptr"); + FilePrintFormat(output, "%s :: #type %s;\n", TrimPrefix(entry->name), hasParent ? TrimPrefix(entry->apiType.parent) : "rawptr"); } else if (entry->type == ENTRY_FUNCTION) { OutputOdinFunction(entry, root); } else if (entry->type == ENTRY_TYPE_NAME) { - FilePrintFormat(output, "%s :: %s;\n", TrimPrefix(entry->name), TrimPrefix(OdinReplaceTypes(entry->oldTypeName, true))); + FilePrintFormat(output, "%s :: #type %s;\n", TrimPrefix(entry->name), TrimPrefix(OdinReplaceTypes(entry->oldTypeName, true))); } } }