From d128e2a30b0249e66845c8195d3ad69adc5e6379 Mon Sep 17 00:00:00 2001 From: Matthijs Lavrijsen Date: Thu, 21 Apr 2022 21:03:50 +0200 Subject: EfiDSEFix: add /SUBSYSTEM:NATIVE project configuration Closes #51 --- Application/EfiDSEFix/src/EfiDSEFix.h | 7 ++++ Application/EfiDSEFix/src/EfiDSEFix.vcxproj | 51 +++++++++++++++++++++++++++++ Application/EfiDSEFix/src/main.cpp | 2 +- 3 files changed, 59 insertions(+), 1 deletion(-) diff --git a/Application/EfiDSEFix/src/EfiDSEFix.h b/Application/EfiDSEFix/src/EfiDSEFix.h index e7cb109..9b79489 100644 --- a/Application/EfiDSEFix/src/EfiDSEFix.h +++ b/Application/EfiDSEFix/src/EfiDSEFix.h @@ -140,7 +140,14 @@ Printf( va_list VaList; va_start(VaList, Format); ULONG N = _vsnwprintf(Buffer, sizeof(Buffer) / sizeof(WCHAR) - 1, Format, VaList); +#if defined(_NATIVE) + UNREFERENCED_PARAMETER(N); + UNICODE_STRING String; + RtlInitUnicodeString(&String, Buffer); + NtDisplayString(&String); +#else WriteConsoleW(NtCurrentPeb()->ProcessParameters->StandardOutput, Buffer, N, &N, NULL); +#endif va_end(VaList); } diff --git a/Application/EfiDSEFix/src/EfiDSEFix.vcxproj b/Application/EfiDSEFix/src/EfiDSEFix.vcxproj index 3461e7b..2400aa5 100644 --- a/Application/EfiDSEFix/src/EfiDSEFix.vcxproj +++ b/Application/EfiDSEFix/src/EfiDSEFix.vcxproj @@ -1,6 +1,10 @@ + + Release (native subsystem) + x64 + Release x64 @@ -23,6 +27,14 @@ v142 false + + Application + false + true + Unicode + v142 + false + @@ -76,9 +88,48 @@ true + + + Level3 + NotUsing + true + WINVER=0x0600;_WIN32_WINNT=0x0600;NTDDI_VERSION=0x06000200;WIN32;_WIN64;NDEBUG;_NATIVE;%(PreprocessorDefinitions) + ProgramDatabase + Caret + true + MultiThreadedDLL + false + stdcpplatest + /Gw /utf-8 %(AdditionalOptions) + false + 4201 + false + true + false + $(SolutionDir)Include;$(SolutionDir)../MdePkg/Include;$(SolutionDir)../MdePkg/Include/X64;$(SolutionDir)../MdeModulePkg/Include;%(AdditionalIncludeDirectories) + true + + + Native + DebugFull + true + true + 6.0 + 6.0 + $(SolutionDir)Application\EfiDSEFix\lib\x64 + NtProcessStartupW + UseLinkTimeCodeGeneration + /NOVCFEATURE /NOCOFFGRPINFO /PDBALTPATH:%_PDB% %(AdditionalOptions) + ntdllp.lib + true + true + true + + MinSpace + MinSpace diff --git a/Application/EfiDSEFix/src/main.cpp b/Application/EfiDSEFix/src/main.cpp index 0575b0a..7112ded 100644 --- a/Application/EfiDSEFix/src/main.cpp +++ b/Application/EfiDSEFix/src/main.cpp @@ -242,6 +242,6 @@ NtProcessStartupW( &NumChars); // Call the main function and terminate with the exit status - const NTSTATUS Status = wmain(Argc, Argv); + const NTSTATUS Status = wmain(static_cast(Argc), Argv); return NtTerminateProcess(NtCurrentProcess, Status); } -- cgit v1.2.3