Determines the loaded LEADTOOLS library DLLs.
#include "ltwrappr.h"
static L_UINT32 LBase::GetLoadedLibraries ()
An L_UINT32 value representing the LEADTOOLS libraries that were loaded successfully. Possible values are:
Value | Meaning |
---|---|
LT_KRN | LtKrnu.dll (Win32) or LtKrnx.dll (x64) was loaded successfully. |
LT_DIS | LtDisu.dll (Win32) or LtDisx.dll (x64) was loaded successfully. |
LT_FIL | LtFilu.dll (Win32) or LtFilx.dll (x64) was loaded successfully. |
LT_IMG | LEADTOOLS imaging libraries were loaded successfully. The complete libraries list are specified in uSubLibraries of LBase::UnloadLibraries. |
LT_EFX | LtEfxu.dll (Win32) or LtEfxx.dll (x64) was loaded successfully. |
LT_DLG | LEADTOOLS dialog libraries were loaded successfully. The complete libraries list are specified in uSubLibraries of LBase::UnloadLibraries. |
LT_TWN | LtTwnu.dll (Win32) or LtTwnx.dll (x64) was loaded successfully. |
LT_SCR | LtScru.dll (Win32) or LtScrx.dll (x64) was loaded successfully. |
LT_ANN | LtAnnu.dll (Win32) or LtAnnx.dll was loaded successfully. |
LTV_KRN | LtVkrnu.dll (Win32) or LtVkrnx.dll (x64) was loaded successfully. |
LTV_DLG | LtVdlgu.dll (Win32) or LtVdlgx.dll (x64) was loaded successfully. |
LT_TMB | LtTmbu.dll (Win32) or LtTmbx.dll (x64) was loaded successfully. |
LT_LST | LtLstu.dll (Win32) or LtLstx.dll (x64) was loaded successfully. |
LT_BAR | LtBaru.dll (Win32) or LtBarx.dll (x64) was loaded successfully. |
LT_ZMV | LtZmvu.dll (Win32) or LtZmvx.dll (x64) was loaded successfully. |
LT_IMGOPT | LtImgOptu.dll (Win32) or LtImgOptx.dll (x64) was loaded successfully. |
LT_ALL_LEADLIB | all available LEADTOOLS libraries were loaded successfully. |
These values may be combined using the bitwise OR operator ( | ).
Call this function to check for loaded LEADTOOLS DLLs at run-time.
Win32, x64.
The following code will check whether the TWAIN library is loaded or not:
L_INT LBase__GetLoadedLibrariesExample()
{
if(LBase::GetLoadedLibraries()<_TWN)
{
// TWAIN library is loaded
}
else
{
// TWAIN library is not loaded
}
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document