| 45 | } |
| 46 | |
| 47 | HANDLE w_NtAlpcCreatePort(POBJECT_ATTRIBUTES ObjectAttributes, PALPC_PORT_ATTRIBUTES PortAttributes) { |
| 48 | HANDLE hAlpc; |
| 49 | NT_SUCCESS_OR_RAISE( |
| 50 | "NtAlpcCreatePort", |
| 51 | NtAlpcCreatePort(&hAlpc, ObjectAttributes, PortAttributes) |
| 52 | ); |
| 53 | return hAlpc; |
| 54 | } |
| 55 | |
| 56 | void w_NtAlpcSetInformation(HANDLE hAlpc, ULONG PortInformationClass, PVOID PortInformation, ULONG Length) |
| 57 | { |
no test coverage detected