mirror of
https://github.com/hfiref0x/UACME
synced 2026-06-08 14:39:53 +00:00
b0855e2362
Method 75 added, see #130 for more info; Fix Win7 regression added in 3.6.1; Readme updated.
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/*******************************************************************************
|
|
*
|
|
* (C) COPYRIGHT AUTHORS, 2022
|
|
*
|
|
* TITLE: CONSOLE.H
|
|
*
|
|
* VERSION: 3.62
|
|
*
|
|
* DATE: 08 Jul 2022
|
|
*
|
|
* Debug console header file.
|
|
*
|
|
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
* PARTICULAR PURPOSE.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
VOID ConsoleInit(
|
|
VOID);
|
|
|
|
VOID ConsoleRelease(
|
|
VOID);
|
|
|
|
VOID ConsolePrintStatus(
|
|
_In_ LPCWSTR Message,
|
|
_In_ NTSTATUS Status);
|
|
|
|
VOID ConsolePrint(
|
|
_In_ LPCWSTR Message);
|
|
|
|
VOID ConsolePrintValueUlong(
|
|
_In_ LPCWSTR Message,
|
|
_In_ ULONG Value,
|
|
_In_ BOOL Hexademical);
|
|
|
|
#ifdef _UCM_CONSOLE
|
|
#define ucmConsoleInit ConsoleInit
|
|
#define ucmConsoleRelease ConsoleRelease
|
|
#define ucmConsolePrintStatus ConsolePrintStatus
|
|
#define ucmConsolePrint ConsolePrint
|
|
#define ucmConsolePrintValueUlong ConsolePrintValueUlong
|
|
#else
|
|
#define ucmConsoleInit()
|
|
#define ucmConsoleRelease()
|
|
#define ucmConsolePrintStatus(Message, Status)
|
|
#define ucmConsolePrint(Message)
|
|
#define ucmConsolePrintValueUlong(Message, Value, Hexademical)
|
|
#endif
|