 |
HOWTO Create and Deploy a Sample DLL using MinGW | MinGW
A sample DLL The DLL we will build will consist of a single source file "example_dll.cpp": #include #include "example_dll.h" __stdcall void hello(const char *s) { printf("Hello %s\n", s); } int Double(int x) { return 2 * x; } void CppFunc(void) { put
www.mingw.org |
 |