CoLoadLibrary (Windows CE 5.0)

Send Feedback

This function is called internally by the CoGetClassObject, when the class context indicates a DLL, to load a specific DLL into the caller's process. Applications should not call it directly.

HINSTANCE CoLoadLibrary(LPOLESTRlpszLibName,BOOLbAutoFree);

Parameters

  • lpszLibName
    [in] Long pointer to the null-terminated string that contains the name of the library to be loaded. The use of this name is the same as in the Win32 function LoadLibrary.
  • bAutoFree
    [in] Ignored. Explicitly unload with the CoFreeLibrary function.

Return Values

The handle of the loaded library indicates success. NULL indicates that the library could not be loaded.

Remarks

The CoLoadLibrary function is called internally by the CoGetClassObject function when the class context (CLSCTX) indicates a DLL. CoLoadLibrary loads a DLL specified by the lpszLibName parameter into the process that called CoGetClassObject. Containers should not call CoLoadLibrary directly.

Internally, a reference count is kept on the loaded DLL, by using CoLoadLibrary to increment the count and the CoFreeLibrary function to decrement it.

Passing into this function any invalid and, under some circumstances, NULL pointers result in unexpected termination of the application.

To determine whether the platform supports this function, see Determining Supported COM APIs.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Objbase.h.
Link Library: Ole32.lib.

See Also

CoFreeLibrary | CoGetClassObject | LoadLibrary

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.