indexing
	description: "Constants for `create_process' from WEL_WINDOWS_ROUTINES."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_PROCESS_CREATION_CONSTANTS

feature -- Access

	create_default_error_mode: INTEGER
			-- New process does not inherit error mode of calling process but use default error mode.

	create_new_console: INTEGER
			-- New process has a new console, instead of inheriting parent’s console.

	create_new_process_group: INTEGER
			-- New process is root process of a new process group.

	detached_process: INTEGER
			-- For console processes, new process does not have access to parent's console.

	is_valid_creation_constant (a_constant: INTEGER): BOOLEAN
			-- Is a_constant a valid process creation constant?
	
invariant

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

end -- class WEL_PROCESS_CREATION_CONSTANTS