您好我有一个需要调用的函数的 DLL。签名是:
const char* callMethod(const char* key, const char* inParams);
如果我使用 ruby 一切正常:
attach_function :callMethod, [:string, :string], :string
如果我使用 C++ 或 C#,我会得到堆栈溢出!?
C#:
[DllImport("DeviceHub.dll", CallingConvention = CallingConvention.Cdecl)]
private unsafe static extern IntPtr callMethod(
[MarshalAs(UnmanagedType.LPArray)] byte[] key,
[MarshalAs(UnmanagedType.LPArray)] byte[] inParams
);
System.Text.UTF8Encoding encoding = new UTF8Encoding();
IntPtr p = callMethod(encoding.GetBytes(key), encoding.GetBytes(args)); // <- stack overflow here
C++:
extern "C"
{
typedef DllImport const char* ( *pICFUNC) (const char*, const char*);
}
HINSTANCE hGetProcIDDLL = LoadLibrary(TEXT("C:\\JOAO\\Temp\\testedll\\Debug\\DeviceHub.dll"));
FARPROC lpfnGetProcessID = GetProcAddress(HMODULE (hGetProcIDDLL),"callMethod");* pICFUNC callMethod;
callMethod = (pICFUNC) lpfnGetProcessID;
const char * ptr = callMethod("c", "{}");
我已经尝试了很多函数调用的变体:WINAPI、PASCAL、stdcall、fastcall,......没有任何效果。
DLL 不是我制作的,我无法控制它。
任何人都可以帮我提出任何建议!?