gpt4 book ai didi

java - JNA 找不到函数

转载 作者:搜寻专家 更新时间:2023-11-01 03:11:00 26 4
gpt4 key购买 nike

JNA 和 DLL 对我来说是全新的领域...我有一个自定义 DLL,它的函数声明如下:

int myfunc (const char*);

dll 在 MinGW 下使用以下命令可以正常编译:

>gcc -shared -omydll.dll mydll.c -lgdi32

但是,使用 JNA 加载它会失败,因为它无法在 DLL 中找到该函数。

public interface mydll extends StdCallLibrary {
mydll INSTANCE = (mydll)Native.loadLibrary("mydll", mydll.class);
int myfunc (String arg);
}

我做了一些研究,似乎这个特定的错误与 DLL 函数的调用过程有关。我看过 __stdcall__cdecl 过程。我还看到许多 DLL 函数将 __declspec(dllexport) 放在它们的函数声明/实现之前(我不知道这意味着什么或它做了什么)。所以,由于 JNA 似乎更喜欢 __stdcall 过程,现在我的函数看起来像这样:

__declspec(dllexport) int __stdcall myfunc (const char*);

这看起来 super 复杂,但并不比我尝试过的任何其他方法更好。使用 HashMap 添加下划线前缀和 @4 后缀也不起作用:

mydll INSTANCE = (mydll)Native.loadLibrary("mydll", mydll.class, new HashMap () {{
add("myfunc", "_myfunc@4");
}});

JNA 文档完全没有帮助。老实说,我不知道自己在做什么了。

最佳答案

事实证明,我正在构建我的 DLL,而且 JNA 也发现我的 DLL 也很好;我在确定编译器如何破坏我的符号时犯了一个错误。我命名为 myfunc 的函数被导出为 myfunc@8myfunc@32取决于他们将多少字节作为参数。这是我在 JNA 项目中使用的代码:

import java.util.*;
import com.sun.jna.*;
import com.sun.jna.win32.*;
//
public class Test
{
public interface mydll extends StdCallLibrary
{
mydll INSTANCE = Native.loadLibrary("mydll", mydll.class, new HashMap {{
put("myfunc", "myfunc@8");
//Other functions
}});
public int myfunc (long arg);
//Other functions
}
//
public static void main (String[] args)
{
System.out.println
(mydll.INSTANCE.myfunc((long)0x23A3920F)); //Or whatever
return 0;
}
}

我的 C 代码:

#include <windows.h>
#include <stdio.h>

__declspec(dllexport) int __stdcall myfunc (__int64);
/* Other functions */

__declspec(dllexport) int __stdcall myfunc (__int64 arg)
{
/* Whatever */
return return_value;
}

GCC 对 -shared 很满意切换并链接到正确的库,就像我原来的问题一样。 我强烈推荐下载this tool这样您就可以准确地找到您的函数名称。

关于java - JNA 找不到函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10292338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com