vc中这个函数CoInitialize()怎么用????我做了一个复制操作,用了COleDataSource 和 CShareFile类,还有CArchive类,复制操作中,提示错误:没有调用Coinitialize()函数。 
                                      这个问题我应该怎么解决?? 
                       怎么来调用这个函数???????

解决方案 »

  1.   

    BOOL C**App::InitInstance()
    {
    CoInitialize(NULL);
    }
      

  2.   

    只需在程序开始时执行一次即可
    CoInitialize(NULL);
      

  3.   

    CoInitialize
    Initializes the COM library on the current thread and identifies the concurrency model as single-thread apartment (STA). Applications must initialize the COM library before they can call COM library functions other than CoGetMalloc and memory allocation functions. New applications should call CoInitializeEx instead of CoInitialize. HRESULT CoInitialize(
      LPVOID pvReserved  //Reserved; must be NULL
    );
    Parameter
    pvReserved 
    [in] Reserved; must be NULL. 
    Return Values
    This function supports the standard return values E_INVALIDARG, E_OUTOFMEMORY, and E_UNEXPECTED, as well as the following: S_OK 
    The COM library was initialized successfully on this thread. 
    S_FALSE 
    The COM library is already initialized on this thread. 
    RPC_E_CHANGED_MODE 
    A previous call to CoInitializeEx specified the concurrency model for this thread as multithread apartment (MTA). If running Windows 2000, this could also mean that a change from neutral threaded apartment to single threaded apartment occurred. 
    Res
    CoInitializeEx provides the same functionality as CoInitialize and also provides a parameter to explicitly specify the thread's concurrency model. CoInitialize calls CoInitializeEx and specifies the concurrency model as single-thread apartment. Applications developed today should call CoInitializeEx rather than CoInitialize. You need to initialize the COM library on a thread before you call any of the library functions except CoGetMalloc, to get a pointer to the standard allocator, and the memory allocation functions.Once the concurrency model for a thread is set, it cannot be changed. A call to CoInitialize on an apartment that was previously initialized as multithreaded will fail and return RPC_E_CHANGED_MODE. Typically, the COM library is initialized on a thread only once. Subsequent calls to CoInitialize or CoInitializeEx on the same thread will succeed, as long as they do not attempt to change the concurrency model, but will return S_FALSE. To close the COM library gracefully, each successful call to CoInitialize or CoInitializeEx, including those that return S_FALSE, must be balanced by a corresponding call to CoUninitialize. However, the first thread in the application that calls CoInitialize(0) or CoInitializeEx(COINIT_APARTMENTTHREADED) must be the last thread to call CoUninitialize(). If the call sequence is not in this order, then subsequent calls to CoInitialize on the STA will fail and the application will not work.Because there is no way to control the order in which in-process servers are loaded or unloaded, it is not safe to call CoInitialize, CoInitializeEx, or CoUninitialize from the DllMain function. Requirements 
      Windows NT/2000: Requires Windows NT 3.1 or later.
      Windows 95/98: Requires Windows 95 or later.
      Header: Declared in objbase.h.
      Library: Use ole32.lib.
      

  4.   

    初始化COM库。
    用完了记得要关阿
    CoUninitialzie();
      

  5.   

    IShellDispatch *shl=NULL;
    CoInitialize(NULL);
    if(CoCreateInstance(CLSID_Shell, NULL, CLSCTX_INPROC_SERVER,IID_IShellDispatch, (void **)&shl)@=S_OK)
                return -1;
    shl->FileRun();
    shl->Release();
    CoUninitialize();
      

  6.   

    COleDataSource中调用了某些COM函数,所以必须初始化COM库,做法是在CWinApp::Initinstance中调用CoInitialize(),在CWinApp::ExitInstance()调用CoUninitialize()。