mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-24 20:35:25 +00:00
34 lines
800 B
C
34 lines
800 B
C
|
/*
|
||
|
* This file is part of the Process Hacker project - https://processhacker.sourceforge.io/
|
||
|
*
|
||
|
* You can redistribute this file and/or modify it under the terms of the
|
||
|
* Attribution 4.0 International (CC BY 4.0) license.
|
||
|
*
|
||
|
* You must give appropriate credit, provide a link to the license, and
|
||
|
* indicate if changes were made. You may do so in any reasonable manner, but
|
||
|
* not in any way that suggests the licensor endorses you or your use.
|
||
|
*/
|
||
|
|
||
|
#ifndef _NTSMSS_H
|
||
|
#define _NTSMSS_H
|
||
|
|
||
|
NTSYSAPI
|
||
|
NTSTATUS
|
||
|
NTAPI
|
||
|
RtlConnectToSm(
|
||
|
_In_ PUNICODE_STRING ApiPortName,
|
||
|
_In_ HANDLE ApiPortHandle,
|
||
|
_In_ DWORD ProcessImageType,
|
||
|
_Out_ PHANDLE SmssConnection
|
||
|
);
|
||
|
|
||
|
NTSYSAPI
|
||
|
NTSTATUS
|
||
|
NTAPI
|
||
|
RtlSendMsgToSm(
|
||
|
_In_ HANDLE ApiPortHandle,
|
||
|
_In_ PPORT_MESSAGE MessageData
|
||
|
);
|
||
|
|
||
|
#endif
|