Dynamic Loading
lgo_DllErrorMessage()
Access function for LayGO library error messages.
#include "laygodll.h"
LMessage lgo_DllErrorMessage
(
LaygoDllError code
);
| code | dll error code |
lgo_DllErrorMessage()is the access function for LayGO library error messages.
lgo_DllErrorMessage()returns a human-readable message corresponding to the type code.
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));
}