DLL导入(在Windows上导入动态DLL库)

时间:2011-08-24 04:18:00

标签: c++ erlang

我需要制作Erlang< - C ++ Bridge

我正在制作win32动态库:

#include "stdafx.h"
#include <Tlhelp32.h>

#ifdef _MANAGED
    #pragma managed(push, off)
#endif

#define DLLExport   __declspec(dllexport)

extern "C"
{
    DLLExport int RunOPC(int);
    DLLExport void Save();
}

并希望从Erlang导入和使用此功能。如何导入这个函数并在Erlang上使用它们?

2 个答案:

答案 0 :(得分:1)

我认为你应该实现erlang linkedin driver或erlang port。

http://www.erlang.org/doc/tutorial/c_portdriver.html

答案 1 :(得分:1)

我还没有使用它,但您可以尝试http://thrift.apache.org