indexing
	description: "Hit test (HT) code constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_HT_CONSTANTS

feature -- Access

	Htborder: INTEGER is 18
			-- Declared in Windows as HTBORDER

	Htbottom: INTEGER is 15
			-- Declared in Windows as HTBOTTOM

	Htbottomleft: INTEGER is 16
			-- Declared in Windows as HTBOTTOMLEFT

	Htbottomright: INTEGER is 17
			-- Declared in Windows as HTBOTTOMRIGHT

	Htcaption: INTEGER is 2
			-- Declared in Windows as HTCAPTION

	Htclient: INTEGER is 1
			-- Declared in Windows as HTCLIENT

	Hterror: INTEGER is -2
			-- Declared in Windows as HTERROR

	Htgrowbox: INTEGER is 4
			-- Declared in Windows as HTGROWBOX

	Hthscroll: INTEGER is 6
			-- Declared in Windows as HTHSCROLL

	Htleft: INTEGER is 10
			-- Declared in Windows as HTLEFT

	Htmaxbutton: INTEGER is 9
			-- Declared in Windows as HTMAXBUTTON

	Htmenu: INTEGER is 5
			-- Declared in Windows as HTMENU

	Htminbutton: INTEGER is 8
			-- Declared in Windows as HTMINBUTTON

	Htnowhere: INTEGER is 0
			-- Declared in Windows as HTNOWHERE

	Htreduce: INTEGER is 8
			-- Declared in Windows as HTREDUCE

	Htright: INTEGER is 11
			-- Declared in Windows as HTRIGHT

	Htsize: INTEGER is 4
			-- Declared in Windows as HTSIZE

	Htsysmenu: INTEGER is 3
			-- Declared in Windows as HTSYSMENU

	Httop: INTEGER is 12
			-- Declared in Windows as HTTOP

	Httopleft: INTEGER is 13
			-- Declared in Windows as HTTOPLEFT

	Httopright: INTEGER is 14
			-- Declared in Windows as HTTOPRIGHT

	Httransparent: INTEGER is -1
			-- Declared in Windows as HTTRANSPARENT

	Htvscroll: INTEGER is 7
			-- Declared in Windows as HTVSCROLL

	Htzoom: INTEGER is 9
			-- Declared in Windows as HTZOOM
	
invariant

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

end -- class WEL_HT_CONSTANTS