CoInitialize (Windows CE 5.0)

Send Feedback

This function is not supported. Instead, your application should call CoInitializeEx using the COINIT_MULTITHREADED constant in the second parameter, like this:

CoInitializeEx(x, COINIT_MULTITHREADED);

If your application uses calls to CoInitialize, you can use a #define directive to map CoInitialize to CoInitializeEx, like this:

#define CoInitialize(x)     CoInitializeEx(x, COINIT_MULTITHREADED)

See Also

COM Functions | CoInitializeEx

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.