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]
动态链接库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]
展开全部
#import "c:\program files\system\ado\msado15.dll":
这种方法不是导入普通的dll文件,而是导入com组件,编译器会马上生成一个tlh
文件, 是com组件的接口定义。导入后你就可以在工程中使用这个com组件.
no_namespace rename:
导入ado的库并且不用名字空间
("EOF","adoEOF"):
重命名eof to adoefo 避免和其他的常量冲突
这种方法不是导入普通的dll文件,而是导入com组件,编译器会马上生成一个tlh
文件, 是com组件的接口定义。导入后你就可以在工程中使用这个com组件.
no_namespace rename:
导入ado的库并且不用名字空间
("EOF","adoEOF"):
重命名eof to adoefo 避免和其他的常量冲突
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询