- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 94
Open
Description
- 
error 1 - original
 struct Struct1 { uint16 filed_1 : 1; uint16 filed_2 : 5; uint16 filed_3 : 10; }; - PDBRipper output
 struct Struct1 { unsigned int filed_1:1; unsigned int filed_2:5; unsigned int filed_3:10; };
- 
error 2 - original
 struct Struct2 { union { uint16 filed_1 : 1; uint16 filed_2 : 5; uint16 filed_3 : 10; }; }; - PDBRipper output
 struct Struct2 { unsigned int filed_1:1; unsigned int filed_2:5; unsigned int filed_3:10; };
- 
error 3 - original
 union Struct4 { struct { uint16 filed_1 : 1; uint16 filed_2 : 5; uint16 filed_3 : 10; }; }; - PDBRipper output
 union Struct4 { unsigned int filed_1:1; unsigned int filed_2:5; unsigned int filed_3:10; };
they have completely different meanings
horsicq
Metadata
Metadata
Assignees
Labels
No labels