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

RegisterTypeLib (oleaut32)
 
.
Summary
Adds information about a type library to the registry.

C# Signatures:

[DllImport("oleaut32.dll")]
static extern int RegisterTypeLib(ITypeLib ptlib,
   [MarshalAs(UnmanagedType.BStr)] string szFullPath,
   [MarshalAs(UnmanagedType.BStr)] string szHelpDir);

[DllImport("oleaut32.dll", PreserveSig=false)]
static extern void RegisterTypeLib(ITypeLib ptlib,
   [MarshalAs(UnmanagedType.BStr)] string szFullPath,
   [MarshalAs(UnmanagedType.BStr)] string szHelpDir);

Possible VB Signatures:

Declare Function RegisterTypeLib Lib "oleaut32.dll" (TODO) As TODO   ???
Declare Function RegisterTypeLib Lib "oleaut32.dll" (ByRef ptlib As Runtime.InteropServices.ComTypes.ITypeLib, <[In](), MarshalAs(UnmanagedType.BStr)> ByRef szFullPath As String, <[In](), MarshalAs(UnmanagedType.BStr)> ByRef szHelpDir As String) As Integer

VB6 Signature:

Declare Function RegisterTypeLib Lib "oleaut32.dll" (ByVal pTLB As Object, szFullPath As Byte, szHelpFile As Byte) As Long

User-Defined Types:

For the ITypeLib parameter, you can use System.Runtime.InteropServices.UCOMITypeLib, already defined in mscorlib.dll. Note that in v2.0 (Whidbey) of the .NET Framework, this interface has been deprecated in favor of System.Runtime.InteropServices.ComTypes.ITypeLib.

Notes:

The first signature returns the raw HRESULT. The second signature throws an exception when a failure HRESULT is returned.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

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
Find References
Show Printable Version
Revisions