#include<windows.h> //using namespace std; #include<iostream> using namespace std; #define DLL_FUNC __declspec(dllexport) //DLL_FUNC int __cdecl Hello(int , int ); //cout << "loading" << endl; extern "C" { DLL_FUNC int Hello(int a, int b) { return (a + b); } }
Edit oleacc.hello
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.