Does anyone can supply me a example for "passing char** in DllCall"?
I looked at the DllStructCreate and DllStructGetPtr, but it seems doesn't work correctly.
Code like that:
I looked at the DllStructCreate and DllStructGetPtr, but it seems doesn't work correctly.
Code like that:
[ autoit ]
$FNStruct = DllStructCreate("char fns[128];") DllStructSetData($FNStruct, "fns", "test123456") DllCall($dll, "int:cdecl","TestXXX", "ptr", DllStructGetPtr($FNStruct))