set ordinal low in export finalize path

This commit is contained in:
Nikita Smith
2025-06-25 10:53:22 -07:00
committed by Ryan Fleury
parent ac261b3eed
commit c209dd730a
2 changed files with 29 additions and 12 deletions
+12 -11
View File
@@ -6,17 +6,18 @@
typedef struct PE_ExportParse
{
String8 obj_path;
String8 lib_path;
String8 name;
String8 alias;
COFF_ImportType type;
U16 ordinal;
U16 hint;
B32 is_ordinal_assigned;
B32 is_noname_present;
B32 is_private;
B32 is_forwarder;
String8 obj_path;
String8 lib_path;
String8 name;
String8 alias;
COFF_ImportType type;
COFF_ImportByType import_by;
U16 hint;
U16 ordinal;
B32 is_ordinal_assigned;
B32 is_noname_present;
B32 is_private;
B32 is_forwarder;
} PE_ExportParse;
typedef struct PE_ExportParseNode