You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
597 B
28 lines
597 B
|
|
#include <ntddsac.h>
|
|
|
|
extern SAC_CHANNEL_HANDLE SacChannelGuiModeDebugHandle;
|
|
extern SAC_CHANNEL_HANDLE SacChannelActionLogHandle;
|
|
extern SAC_CHANNEL_HANDLE SacChannelErrorLogHandle;
|
|
|
|
extern BOOL SacChannelGuiModeDebugEnabled;
|
|
extern BOOL SacChannelActionLogEnabled;
|
|
extern BOOL SacChannelErrorLogEnabled;
|
|
|
|
VOID
|
|
SacChannelInitialize(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
SacChannelTerminate(
|
|
VOID
|
|
);
|
|
|
|
BOOL
|
|
SacChannelUnicodeWrite(
|
|
IN SAC_CHANNEL_HANDLE SacChannelHandle,
|
|
IN PCWSTR Buffer
|
|
);
|
|
|
|
|