Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

LoadTypeLib (oleaut32)
 
.
Summary
The LoadTypeLib function loads a type library from a file. It optionally registers a type library when no file is specified. (see Notes)

C# Signature:

[DllImport("oleaut32.dll", CharSet=CharSet.Unicode, ExactSpelling=true )]
static extern int LoadTypeLib(string fileName, out ITypeLib typeLib);

VB.Net Signatures:

Declare Unicode Function LoadTypeLib Lib "oleaut32.dll" (ByVal szFile As String, ByRef TPpTypeLib As System.Runtime.InteropServices.ComTypes.ITypeLib) As Integer

VB 6 Signature:

Declare Function LoadTypeLib Lib "oleaut32.dll" (szFile As Byte, pTLB As Object) As Long

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

In VB.Net you can substitute System.Runtime.InteropServices.ComTypes.ITypeLib2 or System.Runtime.InteropServices.UCOMITypeLib for System.Runtime.InteropServices.ComTypes.ITypeLib, defined in mscorlib.dll.

Note that in v2.0 (Whidbey) of the .NET Framework, the System.Runtime.InteropServices.UCOMITypeLib interface has been deprecated in favor of System.Runtime.InteropServices.ComTypes.ITypeLib.

For backward compatibility, LoadTypeLib will register the type library if the path is not specified in the szFile parameter. LoadTypeLib will not register the type library if the path of the type library is specified. It is recommended that RegisterTypeLib be used to register a type library.

Tips & Tricks:

Please add some!

Sample Code: (See UnRegisterTypeLib for VB.Net sample code.)

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions