summaryrefslogtreecommitdiff
path: root/source/LCDriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/LCDriver.cpp')
-rw-r--r--source/LCDriver.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/LCDriver.cpp b/source/LCDriver.cpp
index 9af739e..a979d1d 100644
--- a/source/LCDriver.cpp
+++ b/source/LCDriver.cpp
@@ -7,6 +7,7 @@
#include "lcdriver_error_codes.h"
#include "LCDriverInterface.h"
#include "Error.h"
+#include "error_codes_desc.h"
#define VERIFY_CONTEXT(c) \
do { \
@@ -195,6 +196,11 @@ LCDRIVER_API int __cdecl CancelCurrentLoaderCommand(LCDContext Context)
return 0;
}
+LCDRIVER_API void __cdecl GetLoaderErrorDescription(uint32 ErrorNr, uint8 *ShortDescription, uint8 *LongDescription, uint32 ShorDescrBufLen, uint32 LongDescrBufLen)
+{
+ GetLoaderErrorDescription_Call(ErrorNr, ShortDescription, LongDescription, ShorDescrBufLen, LongDescrBufLen);
+}
+
/************************************************************************************************
* API functions for loader commands
************************************************************************************************/