indexing
	description: "Combo-Box-Ex Item Flag (CBEIF) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_CBEIF_CONSTANTS

feature -- Access

	Cbeif_di_setitem: INTEGER is 268435456
			-- The control should store the item data and not ask
			-- for it again. This flag is used only with the
			-- CBEN_GETDISPINFO notification message.
			--
			-- Declared in Windows as CBEIF_DI_SETITEM

	Cbeif_image: INTEGER is 2
			-- The image member is valid or must be filled in.
			--
			-- Declared in Windows as CBEIF_IMAGE

	Cbeif_indent: INTEGER is 16
			-- The indent member is valid or must be filled in.
			--
			-- Declared in Windows as CBEIF_INDENT

	Cbeif_lparam: INTEGER is 32
			-- The lparam member is valid or must be filled in.
			--
			-- Declared in Windows as CBEIF_LPARAM

	Cbeif_overlay: INTEGER is 8
			-- The overlay member is valid or must be filled in.
			--
			-- Declared in Windows as CBEIF_OVERLAY

	Cbeif_selectedimage: INTEGER is 4
			-- The selected_image member is valid or must be
			-- filled in.
			--
			-- Declared in Windows as CBEIF_SELECTEDIMAGE

	Cbeif_text: INTEGER is 1
			-- The text member is valid or must be filled in.
			--
			-- Declared in Windows as CBEIF_TEXT
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_CBEIF_CONSTANTS