| 928 | |
| 929 | |
| 930 | class NRBFSerializationHeader(NRBFRecord): |
| 931 | RecordTypeEnum = 0 |
| 932 | fields_desc = [ |
| 933 | NRBFRecord, |
| 934 | LESignedIntField("RootID", 1), |
| 935 | LESignedIntField("HeaderId", 0), |
| 936 | LESignedIntField("MajorVersion", 1), |
| 937 | LESignedIntField("MinorVersion", 0), |
| 938 | ] |
| 939 | |
| 940 | |
| 941 | # [MS-NRBF] sect 2.6.2 |
nothing calls this directly
no test coverage detected
searching dependent graphs…