mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 13:28:40 +00:00
replaced dependency on linker's chunking for resource serialization
with COFF obj writer
This commit is contained in:
committed by
Ryan Fleury
parent
55c76db902
commit
c45088b546
@@ -144,6 +144,7 @@ enum
|
||||
COFF_SectionFlag_MemRead = (1 << 30),
|
||||
COFF_SectionFlag_MemWrite = (1 << 31)
|
||||
};
|
||||
#define COFF_SectionFlags_PackAlign(f) ((f) << COFF_SectionFlag_AlignShift)
|
||||
#define COFF_SectionFlags_ExtractAlign(f) (COFF_SectionAlign)(((f) >> COFF_SectionFlag_AlignShift) & COFF_SectionFlag_AlignMask)
|
||||
#define COFF_SectionFlags_LnkFlags ((COFF_SectionFlag_AlignMask << COFF_SectionFlag_AlignShift) | COFF_SectionFlag_LnkCOMDAT | COFF_SectionFlag_LnkInfo | COFF_SectionFlag_LnkOther | COFF_SectionFlag_LnkRemove | COFF_SectionFlag_LnkNRelocOvfl)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user