/***************************************/
/* objbitmap.c                         */
/*                                     */
/* objbitmap creation management       */
/*                                     */
/***************************************/



//
// Modifications History
//
//$ LB (13/06/2002) ==> added OBJgetNewHandler function
//






//$ LB (13/06/2002) : introduce a management of objects handler, in order to
//                    centralize the handler system of the ObjBitmaps, according to the
//                    new ObjBitmap structure.

static long int _ObjHandler = 0;


//$ LB (13/06/2002)
/***********************************************************************/
/*                                                                     */
/* int OBJgetNewHandler ()                                             */
/*                                                                     */
/* return a unique handler for a scol object this function has been    */
/* introduced in order to give a handler to the ObjBitmaps (lib OS 2d, */
/* lib2D, lib3d...), since the ObjBitmap structure changed...          */
/*                                                                     */
/***********************************************************************/
int OBJgetNewHandler ()
{
	_ObjHandler++;
	return _ObjHandler;
}
//



