I am learning how to write DLL's. My DLL has 3 files, a cpp file, a header file and a defination file.
I will post the code below:
Header File:
extern "C" double __stdcall MyFunc(int a, double b);
extern "C" int CdeclFunc(int a);
CPP File:
#include "pascal.h"...