I'm using the DLL addFunction call and use DLL.VOID as one of the parameter types.
When I do a syntax check I get an error that says:
DLL.addFunction: invalid DLL parameter type #5 (void)
Is DLL.VOID not supported? It is listed in the documentation.
Steve
PHP Code:
myDll.addFunction("Func1", DLL.INT, DLL.CDECL, "Func1", DLL.VOID);
DLL.addFunction: invalid DLL parameter type #5 (void)
Is DLL.VOID not supported? It is listed in the documentation.
Steve
Comment