L_UseImageListControl (original) (raw)
Summary
Dynamically loads the appropriate DLL to let your program use the LTIMGLISTCLASS registered class.
Syntax
#include "ltlst.h"
L_LTLST_API L_VOID L_UseImageListControl()
Returns
None.
Comments
Because the LTIMGLISTCLASS registered class uses messages rather than function calls, the required dynamic link library (LTLSTU.dll) is not loaded automatically. Therefore, the toolkit provides this dummy function in the DLL, which you can call before using the registered class messages.
Required DLLs and Libraries
- LTLST
- For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.
Platforms
Win32, x64.
See Also
Functions
Topics
Example
L_INT UseImageListControlExample(
HWND hWnd,
HWND * phCtrl,
HINSTANCE hInst)
{
/* create the image list control */
L_UseImageListControl(); /* make sure dll is loaded */
*phCtrl = CreateWindow(LTIMGLISTCLASS,
TEXT(""),
WS_CHILD | WS_BORDER,
10,
10,
250,
250,
hWnd,
NULL,
hInst,
NULL);
ShowWindow(*phCtrl, SW_SHOW);
if(!*phCtrl)
return 0;
return SUCCESS;
}
LEADTOOLS Raster Imaging C API Help