-
Notifications
You must be signed in to change notification settings - Fork 271
/
ctftool.h
30 lines (25 loc) · 1.17 KB
/
ctftool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __CTFTOOL_H
#define __CTFTOOL_H
HWND CreateMessageWindow();
NTSTATUS SendReceivePortMessage(HANDLE PortHandle,
PPORT_MESSAGE PortMessage,
ULONG BufferLength,
PLARGE_INTEGER Timeout);
NTSTATUS SendReceiveProxyData(HANDLE PortHandle,
ULONG TypeFlags,
PCTF_MARSHAL_PARAM Params,
ULONG ParamCount,
PCTF_MARSHAL_COMSTUB Stub,
DWORD FunctionIndex,
DWORD DestinationThread);
NTSTATUS SendReceiveMarshalData(HANDLE PortHandle,
ULONG TypeFlags,
PCTF_MARSHAL_PARAM Params,
ULONG ParamCount,
DWORD DestinationThread);
HANDLE OpenAlpcPort(PWCHAR AlpcPortName, PPORT_MESSAGE ConnectMessage, SIZE_T MessageSize);
BOOL InitializeAlpcRoutines();
extern FARPROC AlpcInitializeMessageAttribute;
extern FARPROC AlpcGetMessageAttribute;
extern FARPROC GUIDFromString;
#endif