Files
Luke Jennings 83beabc1da First commit
2018-12-05 17:11:25 +00:00

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;
}