mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-01 19:48:11 +00:00
pass over COFF layer
- updated naming convention on structs, enums, and macros to conform with code base style - moved related structs closer to each other - moved parser code to separate file
This commit is contained in:
@@ -5,13 +5,13 @@
|
||||
|
||||
typedef struct LNK_Export
|
||||
{
|
||||
struct LNK_Export *next;
|
||||
String8 name;
|
||||
LNK_Symbol *symbol;
|
||||
U32 id;
|
||||
U16 ordinal;
|
||||
COFF_ImportHeaderType type;
|
||||
B32 is_private;
|
||||
struct LNK_Export *next;
|
||||
String8 name;
|
||||
LNK_Symbol *symbol;
|
||||
U32 id;
|
||||
U16 ordinal;
|
||||
COFF_ImportType type;
|
||||
B32 is_private;
|
||||
} LNK_Export;
|
||||
|
||||
typedef struct LNK_ExportList
|
||||
|
||||
Reference in New Issue
Block a user