我在程序的stdafx.h中用了#import,但未能如预期的那样产生对ms xml的C++包装类,百思不得其解.

解决方案 »

  1.   

    我是这样用的:#import "msxml.dll" named_guids,编译但不见效果
      

  2.   

    没用过,来个参考
    #import "C:\program files\common files\system\ado\msado15.dll" no_namespace rename ("EOF", "adoEOF")
      

  3.   

    The #import Directive
    C++ Specific The #import directive is used to incorporate information from a type library. The content of the type library is converted into C++ classes, mostly describing the COM interfaces.Syntax#import "filename" [attributes]#import <filename> [attributes]attributes:attribute1, attribute2, ...attribute1 attribute2 ...filename is the name of the file containing the type library information. A file can be one of the following types: a type library (.TLB or .ODL) file
    an executable (.EXE) file
    a library (.DLL) file containing a type library resource (such as .OCX)
    a compound document holding a type library
    any other file format that can be understood by the LoadTypeLib API 
    The filename is optionally preceded by a directory specification. The filename must name an existing file. The difference between the two forms is the order in which the preprocessor searches for the type library files when the path is incompletely specified.Syntax Form Action 
    Quoted form This form instructs the preprocessor to first look for type library files in the same directory of the file that contains the #import statement, and then in the directories of whatever files that include (#include) that file. The preprocessor then searches along the paths shown below. 
    Angle-bracket form This form instructs the preprocessor to search for type library files along the paths shown below. 
    The compiler will search in the following directories for the named file: the PATH environment variable path list
    the LIB environment variable path list
    the path specified by the /I (additional include directories) compiler option 
    #import can optionally include one or more attributes. These attributes tell the compiler to modify the contents of the type-library headers. A backslash (\) symbol can be used to include additional lines in a single #import statement. For example:#import “test.lib” no_namespace \
       rename(“OldName”, “NewName”)The #import attributes are listed below:exclude high_method_prefix 
    high_property_prefixes implementation_only 
    include(…) inject_statement 
    named_guids no_auto_exclude 
    no_implementation no_namespace 
    raw_dispinterfaces raw_interfaces_only 
    raw_method_prefix raw_native_types 
    raw_property_prefixes rename 
    rename_namespace   
      

  4.   

    http://www.csdn.net/expert/topic/1057/1057366.xml?temp=.4992487
    http://www.csdn.net/expert/topic/914/914837.xml?temp=.2331964
    http://www.csdn.net/expert/topic/564/564540.xml?temp=.7023279