| 253 | |
| 254 | |
| 255 | class ActivationContextInfoData(NDRPacket): |
| 256 | ALIGNMENT = (4, 8) |
| 257 | fields_desc = [ |
| 258 | NDRSignedIntField("clientOK", 0), |
| 259 | NDRSignedIntField("bReserved1", 0), |
| 260 | NDRIntField("dwReserved1", 0), |
| 261 | NDRIntField("dwReserved2", 0), |
| 262 | NDRFullEmbPointerField( |
| 263 | NDRPacketField("pIFDClientCtx", MInterfacePointer(), MInterfacePointer), |
| 264 | ), |
| 265 | NDRFullEmbPointerField( |
| 266 | NDRPacketField("pIFDPrototypeCtx", MInterfacePointer(), MInterfacePointer), |
| 267 | ), |
| 268 | ] |
| 269 | |
| 270 | |
| 271 | # [MS-DCOM] 2.2.22.2.6 |
no test coverage detected
searching dependent graphs…