Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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