indexing
	description: "Track Mouse Event (TME) constants for use by  WEL_TRACK_MOUSE_EVENT."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_TME_CONSTANTS

feature -- Access

	Tme_cancel: INTEGER is -2147483648
			-- Declared in Windows as TME_CANCEL

	Tme_hover: INTEGER is 1
			-- Declared in Windows as TME_HOVER

	Tme_leave: INTEGER is 2
			-- Declared in Windows as TME_LEAVE

	Tme_query: INTEGER is 1073741824
			-- Declared in Windows as TME_QUERY
	
invariant

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

end -- class WEL_TME_CONSTANTS