/*This ASCII (text) file, SETUP, provides the setup function for the REXX SEEK application (it assigns values to several SEEK setup variables).*/
/*It provides time and date formats in the SEEK presort facility, file associations for launching files into applications and user choice on whether or not to use REXXLIB and REXXEA*/
NOTES:
	1.	You can add your own notes to this setup file anywhere you like. IMPORTANT: Do not use an "equal sign" (ASCII control sequence of 61) anywhere in this file, unless you are using it to assign
		a value to a setup/options variable that the SEEK program uses.

	2.	The SEEK program knows the location of this file, among others, via the SEEK variable, "ProgramLocation", which has a value assigned to it via the REXX "PARSE SOURCE" code. On my computer
		ProgramLocation is assigned the value of "C:\Development\REXX\VisProREXX\PROJECTS\Seek_Gold\LSB_Radix_Sort\Seek\".

	3.	The SEEK program does a REXX SYSFILESEARCH() operation to find this file, "SETUP". It then uses the "equal sign" (ASCII control sequence of 61) as the item to search for to find all of the
		SEEK SETUP variable assignments.

	4.	Below, use the "equal sign" (ASCII control sequence of 61) to establish SETUP parameters for the SEEK program. If a particular parameter is to have no value, then just
		use an "equal sign" (ASCII control sequence of 61) with nothing at all to the right of it, or with a set of double quotation marks to the right.
		NOTE: You can use a space to the left and to the right of the "equal sign" (ASCII control sequence of 61), or not (your choice).



/*Section: 1: Begin establishing SEEK program specific variables, such as for the date and time formats*/
These formats establish how SEEK displays dates and times in its "Presort" facility
To set the desired date or time format, do the following:
	1.	Copy and the desired format from the date or time explanation section, immediately below (example: InputStem.Presort_Date_Format?"MM DD YYYY")

	2.	Note that these formats have a question mark ("?") near the right-hand side

	3.	Paste that format in the first line or second line right after the line: "/*Begin setting the date and time formats*/"

	4.	Replace the question mark, "?", with an "equal sign" (ASCII control sequence 61)


/*Begin explanation of allowed date formats (to use one of the formats, replace the "?" with an "equal sign")*/
InputStem.Presort_Date_Format?"MM DD YYYY"		"equivalent to the USA format, except that the years are 4 digits, not 2"
InputStem.Presort_Date_Format?"DD MM YYYY"		"equivalent to the European date format, except that the years are 4 digits, not 2"
InputStem.Presort_Date_Format?"YYYY MM DD"		"equivalent to the Standard format"
/*End explanation of allowed date formats (to use one of the formats, replace the "?" with an "equal sign")*/

/*Begin explanation of allowed time formats (to use one of the formats, replace the "?" with an "equal sign")*/
InputStem.Presort_Time_Format?"HH MM SS AMPM"		"hours, minutes and seconds of the day, based on a 12 hour clock with AM and PM designations"
InputStem.Presort_Time_Format?"HH MM SS"		"hours, minutes and seconds of the day, based on a 24 hour clock"
/*End explanation of allowed time formats (to use one of the formats, replace the "?" with an "equal sign")*/

/*Begin setting the date and time formats*/
InputStem.Presort_Date_Format = "MM DD YYYY"
InputStem.Presort_Time_Format = "HH MM SS AMPM"
/*End setting the date and time formats*/
/*Section: 1: End establishing SEEK program specific variables, such as for the date and time formats*/





/*Sections 2 through 14: Begin setting up and establishing the user file associations for applications (programs) used on this computer*/
/*Begin explanation of the of how the file associations work*/
These sections of SETUP establish the file/application associations that SEEK will use to open, or launch, requested files.
When you request SEEK to launch (open) a file into an application, you can do so in one of two (2) ways:
	1.	Select the specific application to use for opening the file
	2.	Allow SEEK to select the application, based on your established file-to-application associations (associating by file types and/or file filters)

You can establish an association to an application in either or both of the usual OS/2 (ECS) ways:
	A.	Association by "file type" (examples: "Describe Document" or "Mesa Workbook File")
	B.	Association by "file filter (examples: "*.TXT", for an ASCII file associated with a text editor program, or "*.M2", for a file associated with the Mesa2 spreadsheet program).

SEEK uses the extended attributes of a file to establish it's file type. It attempts to match one of the file's extended attributes to any of the listed file type associations listed here in SETUP

Except for the graphics program, you can use up to three (3) file filters to associate files to given program (application). For the graphics program you can associate up to 50 graphics file filters.
When a particular file filter has two (2) or more applications associated with it, SEEK will use the first listed application as the default for launching these files.
/*End explanation of the of how the file associations work*/


/*Section 2: Begin establishing the word processor data file - only one (1) application allowed*/
WORDPROCESSORS:
InputStem.Application.WP.NName.1 = "Describe"
InputStem.Application.WP.PPath.1 = "C:\Describe\OS2\Describe.exe"
InputStem.Application.WP.AAssociation_File_Type.1 = "DeScribe Document"
InputStem.Application.WP.AAssociation_File_Filter.1.1 = ""
InputStem.Application.WP.AAssociation_File_Filter.1.2 = ""
InputStem.Application.WP.AAssociation_File_Filter.1.3 = ""
InputStem.Application.WP.NName.0 = 1
/*Section 2: End establishing the word processor data file - only one (1) application allowed*/



/*Section 3: Begin establishing data files for normally used text editors -  up to four (4) applications allowed*/
NORMAL_TEXTEDITORS:
InputStem.Application.N_ED.NName.1 = "Future Wave Editor"
InputStem.Application.N_ED.PPath.1 = "C:\UTILITIES\TEXT_EDITORS\FWE\FWE.EXE"
InputStem.Application.N_ED.NName.2 = "The OS/2 System Editor"
InputStem.Application.N_ED.PPath.2 = "E:\OS2\E.EXE"
InputStem.Application.N_ED.NName.3 = "Enhanced E Editor"
InputStem.Application.N_ED.PPath.3 = "C:\UTILITIES\TEXT_EDITORS\EEENHANCED_EDITOR\EE.EXE"
InputStem.Application.N_ED.NName.4 = "Enhanced EE Editor"
InputStem.Application.N_ED.PPath.4 = "C:\UTILITIES\TEXT_EDITORS\EEENHANCED_EDITOR\EEE.EXE"
InputStem.Application.N_ED.AAssociation_File_Type.1.1 = "ASCII"
InputStem.Application.N_ED.AAssociation_File_Filter.1.1 = ".TXT"
InputStem.Application.N_ED.AAssociation_File_Filter.1.2 = ""
InputStem.Application.N_ED.AAssociation_File_Filter.1.3 = ""
InputStem.Application.N_ED.AAssociation_File_Type.2.1 = "ASCII"
InputStem.Application.N_ED.AAssociation_File_Filter.2.1 = ".TXT"
InputStem.Application.N_ED.AAssociation_File_Filter.2.2 = ""
InputStem.Application.N_ED.AAssociation_File_Filter.2.3 = ""
InputStem.Application.N_ED.AAssociation_File_Type.3.1 = "ASCII"
InputStem.Application.N_ED.AAssociation_File_Filter.3.1 = ".TXT"
InputStem.Application.N_ED.AAssociation_File_Filter.3.2 = ""
InputStem.Application.N_ED.AAssociation_File_Filter.3.3 = ""
InputStem.Application.N_ED.AAssociation_File_Type.4.1 = "ASCII"
InputStem.Application.N_ED.AAssociation_File_Filter.4.1 = ".TXT"
InputStem.Application.N_ED.AAssociation_File_Filter.4.2 = ""
InputStem.Application.N_ED.AAssociation_File_Filter.4.3 = ""
InputStem.Application.N_ED.NName.0 = 4
/*Section 3: End establishing data files for normally used text editors -  up to four (4) applications allowed*/



/*Section 4: Begin establishing data files for REXX programming text editors -  up to two (2) applications allowed*/
REXX_TEXTEDITORS:
InputStem.Application.R_ED.NName.1 = "Future Wave Editor"
InputStem.Application.R_ED.PPath.1 = "C:\UTILITIES\TEXT_EDITORS\FWE\FWE.EXE"
InputStem.Application.R_ED.NName.2 = ""
InputStem.Application.R_ED.PPath.2 = ""
InputStem.Application.R_ED.AAssociation_File_Type.1.1 = "ASCII"
InputStem.Application.R_ED.AAssociation_File_Filter.1.1 = "*.CMD"
InputStem.Application.R_ED.AAssociation_File_Filter.1.2 = ""
InputStem.Application.R_ED.AAssociation_File_Filter.1.3 = ""
InputStem.Application.R_ED.AAssociation_File_Type.2.1 = ""
InputStem.Application.R_ED.AAssociation_File_Filter.2.1 = ""
InputStem.Application.R_ED.AAssociation_File_Filter.2.2 = ""
InputStem.Application.R_ED.AAssociation_File_Filter.2.3 = ""
InputStem.Application.R_ED.NName.0 = 1
/*Section 4: End establishing data files for REXX programming text editors -  up to two (2) applications allowed*/



/*Section 5: Begin establishing the data file for the LaTeX text editor - only one (1) application allowed*/
LATEX_TEXTEDITORS:
InputStem.Application.L_ED.NName.1 = "The OS/2 Enhanced Editor"
InputStem.Application.L_ED.PPath.1 = "C:\LaTeX\EmTexTDS\EPM_and_EPM_Front_End\EPM.EXE"
InputStem.Application.L_ED.AAssociation_File_Type.1.1 = "ASCII"
InputStem.Application.L_ED.AAssociation_File_Filter.1.1 = "*.TEX"
InputStem.Application.L_ED.AAssociation_File_Filter.1.2 = ""
InputStem.Application.L_ED.NName.0 = 0
/*Section 5: End establishing the data file for the LaTeX text editor - only one (1) application allowed*/



/*Section 6: Begin establishing the data file for running REXX programs (scripts) - up to two (2) applications*/
RUN_REXX:
InputStem.Application.R_R.NName.1 = "PM REXX"
InputStem.Application.R_R.PPath.1 = "E:\OS2\PMREXX.EXE"
InputStem.Application.R_R.NName.2 = "REXX CommandLine"
InputStem.Application.R_R.PPath.2 = Command_Processor_Path
InputStem.Application.R_R.AAssociation_File_Type.1.1 = "ASCII"
InputStem.Application.R_R.AAssociation_File_Filter.1.1 = "*.CMD"
InputStem.Application.R_R.AAssociation_File_Filter.1.2 = ""
InputStem.Application.R_R.AAssociation_File_Type.1.1 = "ASCII"
InputStem.Application.R_R.AAssociation_File_Filter.1.1 = "*.CMD"
InputStem.Application.R_R.AAssociation_File_Filter.1.2 = ""
InputStem.Application.R_R.NName.0 = 1
/*Section 6: End establishing the  data file for running REXX programs (scripts)  - up to two (2) applications*/



/*Section 7: Begin establishing the data file for the spreadsheet program - only one (1) application allowed*/
SPREADSHEETS:
InputStem.Application.SS.NName.1 = "Mesa 2"
InputStem.Application.SS.PPath.1 = "C:\Mesa2\Mesa2.exe"
InputStem.Application.SS.AAssociation_File_Type.1 = "Mesa Workbook File"
InputStem.Application.SS.AAssociation_File_Filter.1.1 = "*.M2"
InputStem.Application.SS.AAssociation_File_Filter.1.2 = "*.M2B"
InputStem.Application.SS.AAssociation_File_Filter.1.3 = ".M2T"
InputStem.Application.SS.NName.0 = 1
/*Section 7: End establishing the data file for the spreadsheet program - only one (1) application allowed*/



/*Section 8: Begin establishing the financial program data file - only one (1) application allowed*/
FINANCE:
InputStem.Application.FIN.NName.1 = ""
InputStem.Application.FIN.PPath.1 = ""
InputStem.Application.FIN.AAssociation_File_Filter.1.1 = ""
InputStem.Application.FIN.AAssociation_File_Filter.1.2 = ""
InputStem.Application.FIN.AAssociation_File_Filter.1.3 = ""
InputStem.Application.FIN.NName.0 = 0
/*Section 8: End establishing the financial program data file - only one (1) application allowed*/



/*Section 9: Begin establishing the web brower data files - up to two (2) applications allowed*/
WEB_BROWERS:
InputStem.Application.WB.NName.1 = "Mozilla"
InputStem.Application.WB.PPath.1 = "C:\NETWORK\MOZILLA\MOZILLA_1.76\MOZILLA.EXE"
InputStem.Application.WB.NName.2 = "Netscape"
InputStem.Application.WB.PPath.2 = "C:\Network\Netscape\PROGRAM\NETSCAPE.EXE"
InputStem.Application.WB.AAssociation_File_Type.1 = ""
InputStem.Application.WB.AAssociation_File_Filter.1.1 = "*.HTM"
InputStem.Application.WB.AAssociation_File_Filter.1.2 = "*.HTML"
InputStem.Application.WB.AAssociation_File_Filter.1.3 = "*.XMTL"
InputStem.Application.WB.AAssociation_File_Type.2 = ""
InputStem.Application.WB.AAssociation_File_Filter.2.1 = "*.HTM"
InputStem.Application.WB.AAssociation_File_Filter.2.2 = "*.HTML"
InputStem.Application.WB.AAssociation_File_Filter.2.3 = "*.XMTL"
InputStem.Application.WB.NName.0 = 2
/*Section 9: End establishing the web brower data files - up to two (2) applications allowed*/



/*Section 10: Begin establishing the data files for the *.PDF file reader -  up to three (3) applications allowed*/
PDF_READERS:
InputStem.Application.PDF.NName.1 = "Acrobat 5"
InputStem.Application.PDF.PPath.1 = "C:\Acrobat\AcrobatReader51Pre1\ar5os2.exe"
InputStem.Application.PDF.NName.2 = "Acrobat 4.05"
InputStem.Application.PDF.PPath.2 = "C:\Acrobat\AcrobatReader405\aros2.exe"
InputStem.Application.PDF.NName.3 = "Acrobat 3"
InputStem.Application.PDF.PPath.3 = "C:\Acrobat\Acrobat3\ReadOS2\acroread.exe"
InputStem.Application.PDF.AAssociation_File_Type.1 = "Acrobat Document"
InputStem.Application.PDF.AAssociation_File_Filter.1.1 = "*.PDF"
InputStem.Application.PDF.AAssociation_File_Filter.1.2 = ""
InputStem.Application.PDF.AAssociation_File_Filter.1.3 = ""
InputStem.Application.PDF.AAssociation_File_Type.2 = ""
InputStem.Application.PDF.AAssociation_File_Filter.2.1 = "Acrobat Document"
InputStem.Application.PDF.AAssociation_File_Filter.2.2 = "*.PDF"
InputStem.Application.PDF.AAssociation_File_Filter.2.3 = ""
InputStem.Application.PDF.AAssociation_File_Type.3 = ""
InputStem.Application.PDF.AAssociation_File_Filter.3.1 = "Acrobat Document"
InputStem.Application.PDF.AAssociation_File_Filter.3.2 = "*.PDF"
InputStem.Application.PDF.AAssociation_File_Filter.3.3 = ""
InputStem.Application.PDF.NName.0 = 1
/*Section 10: End establishing the data files for the *.PDF file reader -  up to three (3) application allowed*/



/*Section 11: Begin establishing the data files for the *.PS and *.EPS file reader - only one (1) application allowed*/
PS_EPS_READER:
InputStem.Application.PS.NName.1 = "GSView"
InputStem.Application.PS.PPath.1 = "C:\GhstView\gsview2\gvpm.exe"
InputStem.Application.PS.AAssociation_File_Type.1 = ""
InputStem.Application.PS.AAssociation_File_Filter.1.1 = "*.PS"
InputStem.Application.PS.AAssociation_File_Filter.1.2 = "*.EPS"
InputStem.Application.PS.AAssociation_File_Filter.1.3 = ""
InputStem.Application.PS.NName.0 = 1
/*Section 11: End establishing the data files for the *.PS and *.EPS file reader - only one (1) application allowed*/


/*Section 12: Begin establishing the data files for the graphics file reader - only one (1) application allowed*/
GRAPHICS:
InputStem.Application.GRAPHICS.NName.1 = "PM View Pro"
InputStem.Application.GRAPHICS.PPath.1 = "C:\Graphics\PMVIEW\pmview.exe"
InputStem.Application.GRAPHICS.AAssociation_File_Type.1 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.1 = "*.BMP"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.2 = "*.CUR"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.3 = "*.DCX"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.4 = "*.EPS"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.5 = "*.FIT"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.6 = "*.G3"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.7 = "*.GIF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.8 = "*.ICO"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.9 = "*.IFF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.10 = "*.ILBM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.11 = "*.IMG"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.12 = "*.JPG"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.13 = "*.JPEG"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.14 = "*.JIF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.15 = "*.JFIF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.16 = "*.LGO"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.17 = "*.MAC"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.18 = "*.MSP"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.19 = "*.PCD"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.20 = "*.PCX"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.21 = "*.PIC"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.22 = "*.PBM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.23 = "*.PGM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.24 = "*.PPM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.25 = "*.PNM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.26 = "*.PNG"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.27 = "*.PSD"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.28 = "*.PTR"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.29 = "*.RAS"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.30 = "*.RLE"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.31 = "*.SFF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.32 = "*.SFW"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.33 = "*.SGI"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.34 = "*.SHW"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.35 = "*.TGA"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.36 = "*.TIF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.37 = "*.TIFF"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.38 = "*.WBMP"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.39 = "*.WPG"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.40 = "*.XBM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.41 = "*.XPM"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.42 = "*.XWD"
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.43 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.44 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.45 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.46 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.47 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.48 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.49 = ""
InputStem.Application.GRAPHICS.AAssociation_File_Filter.1.50 = ""
InputStem.Application.GRAPHICS.NName.0 = 1
/*Section 12: End establishing the  data files for the graphics file reader - only one (1) application allowed*/



/*Section 13: Begin establishing the drafting, or CAD, data file - only one (1) application allowed*/
CAD:
InputStem.Application.DRAFTING.NName.1 = "BlueCAD"
InputStem.Application.DRAFTING.PPath.1 = "C:\Graphics\BLUECAD\PRGM\BlueCAD.exe"
InputStem.Application.DRAFTING.AAssociation_File_Type.1 = ""
InputStem.Application.DRAFTING.AAssociation_File_Filter.1.1 = "*.DIS"
InputStem.Application.DRAFTING.AAssociation_File_Filter.1.2 = ""
InputStem.Application.DRAFTING.AAssociation_File_Filter.1.3 = ""
InputStem.Application.DRAFTING.NName.0 = 1
/*Section 13: End establishing the drafting, or CAD, data file - only one (1) application allowed*/



/*Section 14: Begin establishing data files for user defined file associations N 1 - up to twenty (20) applications allowed*/
USER_DEFINED:
InputStem.Application.USER_DEFINED.NName.1 = ""
InputStem.Application.USER_DEFINED.PPath.1 = ""
InputStem.Application.USER_DEFINED.NName.2 = ""
InputStem.Application.USER_DEFINED.PPath.2 = ""
InputStem.Application.USER_DEFINED.NName.3 = ""
InputStem.Application.USER_DEFINED.PPath.3 = ""
InputStem.Application.USER_DEFINED.NName.4 = ""
InputStem.Application.USER_DEFINED.PPath.4 = ""
InputStem.Application.USER_DEFINED.NName.5 = ""
InputStem.Application.USER_DEFINED.PPath.5 = ""
InputStem.Application.USER_DEFINED.NName.6 = ""
InputStem.Application.USER_DEFINED.PPath.6 = ""
InputStem.Application.USER_DEFINED.NName.7 = ""
InputStem.Application.USER_DEFINED.PPath.7 = ""
InputStem.Application.USER_DEFINED.NName.8 = ""
InputStem.Application.USER_DEFINED.PPath.8 = ""
InputStem.Application.USER_DEFINED.NName.9 = ""
InputStem.Application.USER_DEFINED.PPath.9 = ""
InputStem.Application.USER_DEFINED.NName.10 = ""
InputStem.Application.USER_DEFINED.PPath.10 = ""
InputStem.Application.USER_DEFINED.NName.11 = ""
InputStem.Application.USER_DEFINED.PPath.11 = ""
InputStem.Application.USER_DEFINED.NName.12 = ""
InputStem.Application.USER_DEFINED.PPath.12 = ""
InputStem.Application.USER_DEFINED.NName.13 = ""
InputStem.Application.USER_DEFINED.PPath.13 = ""
InputStem.Application.USER_DEFINED.NName.14 = ""
InputStem.Application.USER_DEFINED.PPath.14 = ""
InputStem.Application.USER_DEFINED.NName.15 = ""
InputStem.Application.USER_DEFINED.PPath.15 = ""
InputStem.Application.USER_DEFINED.NName.16 = ""
InputStem.Application.USER_DEFINED.PPath.16 = ""
InputStem.Application.USER_DEFINED.NName.17 = ""
InputStem.Application.USER_DEFINED.PPath.17 = ""
InputStem.Application.USER_DEFINED.NName.18 = ""
InputStem.Application.USER_DEFINED.PPath.18 = ""
InputStem.Application.USER_DEFINED.NName.19 = ""
InputStem.Application.USER_DEFINED.PPath.19 = ""
InputStem.Application.USER_DEFINED.NName.20 = ""
InputStem.Application.USER_DEFINED.PPath.20 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.1.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.1.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.1.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.2.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.2.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.2.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.3.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.3.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.3.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.4 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.4.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.4.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.4.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.5 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.5.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.5.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.5.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.6 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.6.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.6.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.6.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.7 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.7.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.7.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.7.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.8 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.8.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.8.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.8.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.9 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.3.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.9.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.9.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.10 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.10.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.10.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.10.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.11 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.11.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.11.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.11.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.12 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.12.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.12.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.12.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.13 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.13.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.13.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.13.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.14 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.14.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.14.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.14.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.15 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.15.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.15.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.15.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.16 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.16.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.16.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.16.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.17 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.17.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.17.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.17.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.18 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.18.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.18.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.18.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.19 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.13.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.19.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.19.3 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Type.20 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.20.1 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.20.2 = ""
InputStem.Application.USER_DEFINED.AAssociation_File_Filter.20.3 = ""
InputStem.Application.USER_DEFINED.NName.0 = 0
/*Section 14: End establishing data files for user defined file associations  - up to twenty (20) applications allowed*/
/*Sections 2 through 14: End setting up and the user file associations for applications (programs) used on this computer*/



/*Section 15: Begin setting the two (2) variables for using, or not using the REXX Library (REXXLIB) and REXXEA)*/
SEEK uses the following three (3) facilities to provide extended attributes (EA) search capabilities:

	1.	The SYSGETEA funtion within the REXX Utilities (the REXX Utilities are part of the REXX package included in OS/2 or ECS).
	2.	The DOSEALIST() function from the REXX Library (REXXLIB) by Quercus Systems.
	3.	The FETCHEA() function from REXXEA, Ammonoosuc Technology, Inc., 131 Ridge Road, Franconia, New Hampshire 03580.

No one facility by itself provides a complete source for finding the EA. Nevertheless, if you do not have one or both of the REXXLIB and REXXEA
installed on your system, you can have SEEK use the REXX Utilities and which ever other facility, REXXLIB or REXXEA, if any, installed. I recommend that SEEK use REXXLIB and/or REXXEA, if
one or both is installed on your system.

Please set the the two (2) variables for using, or not using REXXLIB and REXXEA, below. Replace the "?" with an "equal sign" (ASCII control sequence 61) on the "YES" or "NO" selection of choice.
InputStem.Use_REXXLIB?"YES"
InputStem.Use_REXXLIB?"NO"
InputStem.Use_REXXEA?"YES"
InputStem.Use_REXXEA?"NO"

InputStem.Use_REXXLIB = "YES"
InputStem.Use_REXXEA = "YES"
/*Section 15: End setting the two (2) variables for using, or not using the REXX Library (REXXLIB) and REXXEA)*/
