Dynamic Loading

Dll Error Message

lgo_DllErrorMessage()

Access function for LayGO library error messages.

Syntax
#include "laygodll.h"

LMessage lgo_DllErrorMessage
    (
         LaygoDllError    code
    );
codedll error code
Description

lgo_DllErrorMessage()is the access function for LayGO library error messages.

Return Values

lgo_DllErrorMessage()returns a human-readable message corresponding to the type code.

See Also

lgo_DllDescription()
lgo_DllName()
lgo_DllTagToType()
lgo_DllType()

Example
LaygoDllType    dllType;
LResult         result;

if (argc > 1)
{
    if (!lgo_DllTagToType(argv[1], &dllType))
    {
        printf("\nSyntax: laygodllt [" lgo_DLL_TAG_STRING "]\n");
        exit(EXIT_FAILURE);
    }
}

if ((result = lgo_LoadLaygoDll(dllType)) < 0)
{
    printf("Error: Cannot load %s LayGO API Library (%s): %s.\n",
                lgo_DllDescription(dllType),
                lgo_DllName(dllType),
                lgo_DllErrorMessage(result));
}
else
{
    printf("%s LayGO API Library loaded.\n", lgo_DllDescription(dllType));
}