"c++ crash windows" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "c++ crash windows" answered properly. Developers are finding an appropriate answer about c++ crash windows related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like c++ crash windows. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on c++ crash windows. 

c++ crash windows

By 0nline0nline on Jun 23, 2020
#include <Windows.h>
#include <ntstatus.h>

#define SHUTDOWN_PRIVILEGE 19
#define OPTION_SHUTDOWN 6

// function definitions
typedef NTSTATUS(NTAPI *pdef_RtlAdjustPrivilege) (
	ULONG privilege,
	BOOLEAN enable,
	BOOLEAN current_thread,
	PBOOLEAN enabled);
typedef NTSTATUS(NTAPI *pdef_NtRaiseHardError)(
	NTSTATUS error_status,
	ULONG number_of_parameters,
	ULONG unicode_string_parameter_mask,
	PULONG_PTR parameters,
	ULONG response_option,
	PULONG reponse);

int main()
{
	pdef_RtlAdjustPrivilege RtlAdjustPrivilege = (pdef_RtlAdjustPrivilege)GetProcAddress(LoadLibraryA("ntdll.dll"), "RtlAdjustPrivilege");
	BOOLEAN enabled;
	if (RtlAdjustPrivilege(SHUTDOWN_PRIVILEGE, TRUE, FALSE, &enabled) == 0)
	{
		pdef_NtRaiseHardError NtRaiseHardError = (pdef_NtRaiseHardError)GetProcAddress(LoadLibraryA("ntdll.dll"), "NtRaiseHardError");
		ULONG response;
		NtRaiseHardError(STATUS_NOT_IMPLEMENTED, 0, 0, 0, OPTION_SHUTDOWN, &response);
	}
}

Add Comment

0

All those coders who are working on the C++ based application and are stuck on c++ crash windows can get a collection of related answers to their query. Programmers need to enter their query on c++ crash windows related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about c++ crash windows for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of c++ crash windows while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "c++ crash windows". Visit this developer's friendly online web community, CodeProZone, and get your queries like c++ crash windows resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "c++ crash windows"

View All C++ queries

C++ queries related to "c++ crash windows"

Browse Other Code Languages

CodeProZone