LBitmapList::LBitmapList

#include "ltwrappr.h"

L_VOID LBitmapList::LBitmapList(L_VOID)

L_VOID LBitmapList::LBitmapList(pBitmapList)

LBitmapList L_FAR * pBitmapList;

/* pointer to an LBitmapList object */

Constructs and initializes the member variables of an LBitmapList object.

Parameter

Description

pBitmapList

Pointer to a bitmap list object to be used for initializing the object.

Returns

None

Comments

LBitmapList::LBitmapList() is the default constructor for the LBitmapList class.

LBitmapList::LBitmapList(pBitmapList) constructor will initialize the class object's bitmap list from the passed object's bitmap list, and then invalidate the passed object.

Required DLLs and Libraries

LTFIL

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LBitmapList::~LBitmapList, Class Members

Example

This is an example for LBitmapList::LBitmapList():

L_VOID ConstructorSample()
{
   LBitmapList bmpList;
   // call create to have a valid LBitmapList object
   bmpList.Create();
}

This is an example for LBitmapList::LBitmapList(pBitmapList):

L_VOID SecondConstructorSamples(HWND hWnd)
{
   LBitmapList FirstList;
   // call create to make the list valid
   FirstList.Create();
   //... load FirstList with data
   LBitmapList SecondList(&FirstList);
}