Dynamic Loading

Dll Name

lgo_DllName()

Access function for LayGO library names.

Syntax
#include "laygodll.h"

LMessage lgo_DllName
    (
         LaygoDllType    code
    );
codetype of dll to get name of
Description

lgo_DllName()is the access function for LayGO library names.

Return Values

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

See Also

lgo_DllDescription()
lgo_DllErrorMessage()
lgo_DllType()
lgo_DllTagToType()

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));
}