hello (oleacc)
Last changed: -199.63.142.252

.

#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);

    }

}