mirror of
https://github.com/notscimmy/pplib
synced 2026-06-22 07:30:05 +00:00
12 lines
277 B
C++
12 lines
277 B
C++
#include <Windows.h>
|
|
#include "pplib.h"
|
|
|
|
int main()
|
|
{
|
|
if (elevate_ppl())
|
|
MessageBoxA(NULL, "Use ProcessHacker to check PPL status", "Paused", NULL);
|
|
else
|
|
MessageBoxA(NULL, "Something went wrong - probably unsuported windows version", "Error", MB_ICONERROR);
|
|
return 0;
|
|
}
|