I have a dll that creates a custom object and gives that object's properties values. I would like to use that object inside of a R:Base program.
I have tried:
set var v1 = (DLCall('SomeDLL.dll','new','12682'))
and I get
-ERROR- DLL function new is not predefined. (3205)
Do I need to change the DLL so that it exports a function instead of an object?
Can I change the STDCall to use custom objects instead of standard data types?

