CreateTypeLib2

This function creates a type library in the file/in-memory format that makes use of memory-mapped files for 32-bit platforms. Its output parameter (ppctlib) points to a newly created object that supports the ICreateTypeLib2 interface.

HRESULT CreateTypeLib2( 
  SYSKIND syskind,
  LPOLESTR szFile,
  ICreateTypeLib2** ppctlib 
); 

Parameters

  • syskind
    [in] The target operating system for which to create a type library.
  • szFile
    [in] The name of the file to create.
  • ppctlib
    [out] Pointer to an instance supporting the ICreateTypeLib interface.

Remarks

Windows CE does not implement the ICreateTypeLib2::SaveAllChanges method.

Passing invalid (and under some circumstances NULL) pointers to this function causes an unexpected termination of the application.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Oleauto.h.
Link Library: Oleaut32.lib.

See Also

ICreateTypeLib2 | ICreateTypeLib

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.