mirror of
https://github.com/WithSecureLabs/dotnet-gargoyle
synced 2026-06-21 13:46:26 +00:00
19 lines
620 B
C++
19 lines
620 B
C++
// NativeMainApp.cpp : Defines the entry point for the console application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include <windows.h>
|
|
#include <conio.h>
|
|
|
|
|
|
int main()
|
|
{
|
|
HMODULE dll = LoadLibrary(L"NativeDll.dll");
|
|
DWORD ret = GetLastError();
|
|
Sleep(1000);
|
|
FreeLibrary(dll);
|
|
_getch();
|
|
return 0;
|
|
}
|
|
|