DLL导入(windows上导入动态dll库)

发布于 2024-12-01 06:00:27 字数 362 浏览 0 评论 0原文

我需要制作 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 上使用它们?

I need to make Erlang <- C++ Bridge

I'm making win32 dynamic library :

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

And want to import and use this functions from Erlang. How to import this functions and use them on Erlang ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海螺姑娘 2024-12-08 06:00:27

我认为你应该实现 erlang linkedin 驱动程序或 erlang 端口。

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

I think you should implement erlang linkedin driver or erlang port.

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

作业与我同在 2024-12-08 06:00:27

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

I am yet to use it but you could try http://thrift.apache.org

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文