*CString       sWallpaper = wszWallpaper;  // Convert the wallpaper path to ANSI
IShellLink*   pISL;
IPersistFile* pIPF;
    // 1. Initialize the COM library (make Windows load the DLLs). Normally you would
    // call this in your InitInstance() or other startup code.  In MFC apps, use
    // AfxOleInit() instead.
    CoInitialize ( NULL );
    2. Create a COM object, using the Shell Link coclass provided by the shell.
    // The 4th parameter tells COM what interface we want (IShellLink).
    hr = CoCreateInstance ( CLSID_ShellLink,
                            NULL,
                            CLSCTX_INPROC_SERVER,
                            IID_IShellLink,
                            (void**) &pISL );
    if ( SUCCEEDED(hr) )
        {
        // 3. Set the path of the shortcut's target (the wallpaper file).
        **hr = pISL->SetPath ( sWallpaper );**
        if ( SUCCEEDED(hr) )
            {
            // 4. Get a second interface (IPersistFile) from the COM object.
            **hr = pISL->QueryInterface ( IID_IPersistFile, (void**) &pIPF );**
            if ( SUCCEEDED(hr) )
                {
                // 5. Call the Save() method to save the shortcut to a file.  The
                // first parameter is a Unicode string.
                **hr = pIPF->Save ( L"C:\\wallpaper.lnk", FALSE );**
                // 6a. Release the IPersistFile interface.
                pIPF->Release();
                }
            }
        // 6b. Release the IShellLink interface.
        pISL->Release();
        }
    // Printing of error messages omitted here.
    // 7. Uninit the COM library.  In MFC apps, this is not necessary since MFC
    // does it for us.
    CoUninitialize();*

on the above piece of code, how are the return values "HRESULT hr" set while calling com-interop methods ?

link|improve this question
Something like return S_OK;? Can you provide more context relevant to the question? – In silico Aug 25 '11 at 8:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.