| 54 | } |
| 55 | |
| 56 | void w_NtAlpcSetInformation(HANDLE hAlpc, ULONG PortInformationClass, PVOID PortInformation, ULONG Length) |
| 57 | { |
| 58 | NT_SUCCESS_OR_RAISE( |
| 59 | "NtAlpcSetInformation", |
| 60 | NtAlpcSetInformation(hAlpc, PortInformationClass, PortInformation, Length) |
| 61 | ); |
| 62 | } |
| 63 | |
| 64 | |
| 65 | HANDLE w_NtAlpcConnectPort( |
no test coverage detected