hi,
I've created a simple dll file using the win32 dynamic link library and a .def file.Now I would like to use it in a win32 console application.How do I set it up?This is how my DLL file looks like and the name of the file is Test.dll
#include<iostream>
using namespace std;
void print()
{
cout<<"Hello world!";
}
I've created a simple dll file using the win32 dynamic link library and a .def file.Now I would like to use it in a win32 console application.How do I set it up?This is how my DLL file looks like and the name of the file is Test.dll
#include<iostream>
using namespace std;
void print()
{
cout<<"Hello world!";
}