| 1659 | |
| 1660 | |
| 1661 | class NDRIntEnumField(_NDRValueOf, NDRAlign): |
| 1662 | # v1_enum are always 4-octets, even in NDR32 |
| 1663 | def __init__(self, *args, **kwargs): |
| 1664 | super(NDRIntEnumField, self).__init__( |
| 1665 | LEIntEnumField(*args, **kwargs), align=(4, 4) |
| 1666 | ) |
| 1667 | |
| 1668 | |
| 1669 | # Special types |
no outgoing calls
no test coverage detected
searching dependent graphs…