| 2587 | |
| 2588 | |
| 2589 | class NDRNone(NDRPacket): |
| 2590 | # This is only used in NDRPacketListField to act as a "None" pointer, and is |
| 2591 | # a workaround because the field doesn't support None as a value in the list. |
| 2592 | name = "None" |
| 2593 | ALIGNMENT = (4, 8) |
| 2594 | fields_desc = [ |
| 2595 | NDRInt3264Field("ptr", 0), |
| 2596 | ] |
| 2597 | |
| 2598 | |
| 2599 | # --- Type Serialization Version 1 - [MSRPCE] sect 2.2.6 |
no test coverage detected
searching dependent graphs…