The dll is probably using something like:
Code:
#ifdef __cplusplus
extern "C" {
#endif
DLL_API DSQL * CreateDB(void)
{
return new DSQL();
}
#ifdef __cplusplus
}
#endif
All C apps should allow you to work with that even C# just include the .h files or use LoadLibrary()