indexing
	description: "OpenFile common dialog (OFN) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_OFN_CONSTANTS

feature -- Access

	Ofn_allowmultiselect: INTEGER is 512

	Ofn_createprompt: INTEGER is 8192

	Ofn_enablehook: INTEGER is 32

	Ofn_enabletemplate: INTEGER is 64

	Ofn_enabletemplatehandle: INTEGER is 128

	Ofn_explorer: INTEGER is 524288

	Ofn_extensiondifferent: INTEGER is 1024

	Ofn_filemustexist: INTEGER is 4096

	Ofn_hidereadonly: INTEGER is 4

	Ofn_nochangedir: INTEGER is 8

	Ofn_nolongnames: INTEGER is 262144

	Ofn_nonetworkbutton: INTEGER is 131072

	Ofn_noreadonlyreturn: INTEGER is 32768

	Ofn_notestfilecreate: INTEGER is 65536

	Ofn_novalidate: INTEGER is 256

	Ofn_overwriteprompt: INTEGER is 2

	Ofn_pathmustexist: INTEGER is 2048

	Ofn_readonly: INTEGER is 1

	Ofn_shareaware: INTEGER is 16384

	Ofn_sharefallthrough: INTEGER is 2

	Ofn_sharenowarn: INTEGER is 1

	Ofn_sharewarn: INTEGER is 0

	Ofn_showhelp: INTEGER is 16
	
invariant

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

end -- class WEL_OFN_CONSTANTS