|
AS WIN32 DLL
- How to get and use our libraries
from .NET platform
If you want to use our libraries
from NET platform you can do it in the same way as you can use any
function from other windows standard win32 dll library.
Only problem
is how to define parameters types and return value.
Here we will try to help
you not only with our libraries, but with any others.

.NET API declaration form
VB.NET
Declare Function <Name> Lib
<dll name> <Optional fields> (<params>) _
As <return type>
C# definition
[DllImport("<dll name>",
<optional fields>)]
static extern <return type> <Method name> (<Params>)
Managed C++ .NET
[DllImport("<Dll name>",<optional
fields>)]
static <return type> <Function name>( <Params>);
|