I have a C++ driver I\'m trying to compile, and it has this line in the code:
#import \"msado15.dll\" no_namespace rename(\"EOF\", \"EndOfFile\")
You need to have library files and function definition headers to do this. If you happen to don't have them, you would try dynamic loading of DLL using LoadLibrary and GetProcAddress, pointers for linking functions.