Return to Snippet

Revision: 24324
at February 26, 2010 10:52 by AlexLocust


Initial Code
STATUS      error;
char        szNotesError[MAX_NOTES_ERROR];

if (error = NSFDbOpen(szName))
{
    OSLoadString(NULLHANDLE, ERR(error), szNotesError, MAX_NOTES_ERROR);

    printf("Unable to open database: %s.\n", szNotesError);

    return;
}

Initial URL


Initial Description
Get error description from Lotus Notes C API

Initial Title
Get error description from Lotus Notes C API

Initial Tags
error, api

Initial Language
C++