View Single Post
Old 09-22-2005, 07:18 PM   #3 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 651
DJMaze is on a distinguished road
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()
DJMaze is offline   Reply With Quote