c++,#import "c:\program files\system\ado\msado15.dll"no_namespace rename("EOF","adoEOF")含义

 


引入动态链接库  msado15.dll 的信息,
动态链接库msado15.dll  的 路径是 c:\program files\system\ado\

no_namespace -- 无命名空间

rename("EOF","adoEOF") -- 把文件结束符 "EOF",更换成 "adoEOF"

使用ADO时 通常 在<stdafx.h>中,添加 
MSDN 说:
#import Directive used to incorporate information from a type library. The content of the type library is converted into C++ classes, mostly describing the COM interfaces.
语法:
#import "filename" [attributes]
#import <filename> [attributes] 

你可能感兴趣的:(c++,#import "c:\program files\system\ado\msado15.dll"no_namespace rename("EOF","adoEOF")含义)