Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

#import doubt.....

Status
Not open for further replies.

manumohan

Programmer
Apr 9, 2003
4
IN
hi friends

what is the difference between #import and #include directive.

what is the purpose of the following directive?

#import ***.dll

Is it simply copies the contents in the dll or exporting symbols in the dll?

what are the uses of #import

 
The import keyword imports a type libraries for COM components. The engine creates C++ wrapper classes using smart pointers for the interfaces declared in the type library.

To see more details consult the MSDN library.
-pete


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top