/**********************************************************************/ /* */ /* PRINTER SESSION DEFINITION FILE FOR: LaserPrinter 4019/4019-E */ /* */ /**********************************************************************/ /**********************************************************************/ /* Macro Definitions */ /* Define values here that will be used commonly throughout your */ /* definitions. Then use the left hand side of the equate as you */ /* define your characters and control strings. The printer compiler */ /* will substitute the right hand side of the equate for each */ /* occurrence of the left hand side throughout the file. */ /* */ /* Macro names must be at least three characters long and may not */ /* begin with a number. */ /* */ /* Format */ /* A Macro Name is associated with a value or string of values by the */ /* EQU statement. The right hand side of an EQU statement must be a */ /* string of zero or more two digit hexadecimal numbers. If a macro */ /* definition is more than one line long, you may extend it to the */ /* next line by ending the first line with a comma. In this manner */ /* you may define a macro which is many lines long by terminating each*/ /* line except the last with a comma. No macro names are allowed on */ /* right hand side. */ /**********************************************************************/ BEGIN_MACROS /* The following values are standard for most printers. Check your */ /* printer manual to verify that these are correct for your printer */ NUL EQU 00 /* Nul character */ BEL EQU 07 /* Beeper */ BAK EQU 08 /* Back Space */ TAB EQU 09 /* Tab */ LFF EQU 0A /* Line Feed */ VTB EQU 0B /* Vertical Tab */ FFF EQU 0C /* Form Feed */ CRR EQU 0D /* Carriage Return */ P05 EQU 1B 57 01 /* 5 Pitch-Characters/inch */ /* Same as Double Wide */ SEL EQU 11 /* Select Printer */ P10 EQU 12 /* 10 Pitch-Characters/inch */ CDW EQU 1B 57 00 /* Cancel Double Wide contin. */ CDL EQU 14 /* Cancel Double Wide line */ ESC EQU 1B /* Escape */ CAN EQU 18 /* Cancel Data */ SPA EQU 20 /* Space */ P17 EQU 12 0F /* 17.1 Pitch-Characters/inch */ CS2 EQU 1B 36 /* Select Character Set 2 */ CS1 EQU 1B 37 /* Select Character Set 1 */ P12 EQU 1B 3A /* 12 Pitch-characters/inch */ SVT EQU 1B 42 /* Set Vertical Tabs */ SFL EQU 1B 43 00 /* Set Form Length */ SHT EQU 1B 44 /* Set Horizontal Tabs */ SDS EQU 1B 47 /* Start Double Strike */ CDS EQU 1B 48 /* Cancel Double Strike */ SSP EQU 1B 4E /* Set skip perforation */ CSP EQU 1B 4F /* Cancel skip perforation */ CAT EQU 1B 52 /* Cancel all tabs Clears VT */ /* and sets HT every 8 position */ CSS EQU 1B 54 /* Cancel Subscript or Superscript */ SSO EQU 1B 53 00 /* Set Superscript over */ SSU EQU 1B 53 01 /* Set Subscript under */ SUL EQU 1B 2D 01 /* Start Underline */ CUL EQU 1B 2D 00 /* Cancel Underline */ SCP EQU 1B 5B 54 04 00 00 00 /* ESC T - select code page */ CP8 EQU 1B 5B 54 04 00 00 00 03 52 /* select code page 850 */ CP4 EQU 1B 5B 54 04 00 00 00 01 B5 /* select code page 437 */ LL2 EQU 1B 41 24 1B 32 /* Setline length 2 lines/inch */ LL3 EQU 1B 41 18 1B 32 /* Setline length 3 lines/inch */ LL4 EQU 1B 41 12 1B 32 /* Setline length 4 lines/inch */ LL6 EQU 1B 41 0C 1B 32 /* Set line length 6 lines/inch */ LL8 EQU 1B 41 09 1B 32 /* Set line length 8 lines/inch */ LL0 EQU 1B 41 07 1B 32 /* Set line length 10 lines/inch */ /* actually 7/72 inch */ SD1 EQU 1B 5B 46 05 00 00 01 01 00 00 /* Select Drawer 1 */ SD2 EQU 1B 5B 46 05 00 00 01 02 00 00 /* Select Drawer 2 */ ENV EQU 1B 5B 46 05 00 00 02 00 00 00 /* Select Envelope */ FRM EQU 1B 64 /* Forward Relative Movement */ VLF EQU 1B 4A /* Vertical Line Feed 1/216 inch units */ SPO EQU 1B 6B /* Set Portrait Orientation */ SLO EQU 1B 6C /* Set Landscape Orientation */ SFG EQU 1B 5B 49 08 00 /* Set Font Global */ END_MACROS /* Session Parameters */ /* These parameters determine the way in which output will be */ /* formatted for your printer. */ /* Numeric Parameters */ /* These parameters should be defined with a two digit hex number */ /* or a three digit decimal number. The range of the number is zero */ /* to 255 (decimal). */ MAXIMUM_PAGE_LENGTH=066 /* Printed lines per page */ MAXIMUM_PRINT_POSITION=080 /* Printed characters per line */ INTERV_REQ_TIMER=001 RESELECT_TIME_EXCPT_5204=001 INTERV_TIMER_ON_PE_ONLY?=NO HORIZONTAL_PEL=120 VERTICAL_PEL=216 LINE_SPACING_RATIO=072 PAGE_LENGTH_TYPE?=INCH /* SET_PAGE_LENGTH "value" is */ /* values */ /* YES/NO Parameters */ /* These parameters should be defined with either "YES" or "NO" on the*/ /* right hand side of the '=' */ COMPRESS_LINE_SPACING?=NO /* Should blank or null lines */ /* be printed? */ FORM_FEED_ANY_POSITION?=YES /* Should the form feed be */ /* valid in any position? */ OVERRIDE_FORMATTED_PRINT?=YES /* Should nulls be printed as */ /* blanks? */ AUTO_NEWLINE_AT_MAX_POS?=NO /* Control Codes */ /* These definitions tell the emulator what control strings to send to*/ /* your printer to issue control commands. */ /* */ /* Format */ /* The name of the control command should always be at the beginning */ /* of a line followed by a '=' and then a definition string. */ /* A Definition String is any combination of macro names, hexadecimal */ /* numbers, and characters separated by blanks. A macro must have */ /* previously defined in the macro definitions section above. A */ /* hexadecimal number must be two digits (0,..,F) long. and a */ /* character must be preceded and followed by a blank. If a */ /* definition string will not fit on a line, it may be continued */ /* as many lines as you wish by ending each line except the last with */ /* a comma; ','. You made add any comments you wish to by including*/ /* them between a slash* and a *slash where slash is the symbol /. */ /* START_JOB is the control string which will be sent to your printer */ /* at the beginning of each print job. */ START_JOB=SEL CDW CDL CUL CDS CP8 CS2 /* END_JOB is the string which will be sent to your printer at the end*/ /* of each print job. */ END_JOB=CAT CDW CDL CUL CDS CP4 FFF BACKSPACE=BAK BEL=BEL CARRIAGE_RETURN=CRR NEW_LINE=CRR LFF LINE_FEED=LFF FORM_FEED=FFF HORIZONTAL_TAB=TAB VERTICAL_TAB=VTB START_SUBSCRIPT=SSU END_SUBSCRIPT=CSS START_SUPERSCRIPT=SSO END_SUPERSCRIPT=CSS DUP=* FIELD_MARK=; /* The following commands specify control codes for which most PC */ /* printers require command strings which contain a variable value */ /* or values somewhere in the middle of the string. */ /* Place the word "value(s)" in the position of your definition */ /* string where the Z and I Emulator for Windows 5250 should fill in */ /* the hexadecimal value(s) indicated. */ /* For example, on the IBM Proprinter, the SET_HORIZONTAL_TABS */ /* definition is: */ /* SET_HORIZONTAL_TABS=ESC D values NUL */ SET_HORIZONTAL_TABS=SHT values NUL /* "values" are the tab stops */ /* in column numbers */ SET_VERTICAL_TABS=SVT values NUL /* "values" are the tab stops */ /* in line numbers */ SET_HORIZONTAL_MARGINS= SET_PAGE_LENGTH=SFL value /* "value"=inch of the page */ SET_AUTO_PERFORATION_SKIP=SSP value /* "value"=number of lines to */ /* skip over the perforation */ /* between pages. Used to set */ /* top and bottom margins. */ SET_VARIABLE_LINE_DENSITY=ESC A value ESC 2 /* "value"=number of points. */ /* A point is */ /* 1/(LINE_SPACING_RATIO) inch.*/ SET_CHARACTER_SET= /*SET_CHARACTER_SET=ESC I NULL selects the normal font */ /*SET_CHARACTER_SET=ESC I 02 selects the NLQ (near letter quality) */ /*SET_CHARACTER_SET=ESC I 04 selects the normal downloaded font */ /*SET_CHARACTER_SET=ESC I 06 selects the NLQ downloaded font */ /*SET_CHARACTER_SET=CS1 selects the Character set 1 */ /*SET_CHARACTER_SET=CS2 selects the Character set 2 */ /* These control codes set the printer lines per inch and characters */ /* per inch to fixed amounts. */ /* If your printer does not support setting the line density in points*/ /* then you can enter control strings for the following commands. */ /* When Z and I Emulator for Windows 5250 gets a command from the host to */ /* set the lines per inch, it will round it to the closest line per */ /* inch setting that you provide. Note that if you provide a command */ /* for the SET_VARIABLE_LINE_DENSITY command above that it will be */ /* used and any control strings you provide for the set lines per inch*/ /* commands below will not be used. */ SET_2_LINES_PER_INCH=LL2 SET_3_LINES_PER_INCH=LL3 SET_4_LINES_PER_INCH=LL4 SET_6_LINES_PER_INCH=LL6 SET_8_LINES_PER_INCH=LL8 SET_10_LINES_PER_INCH=LL0 /* 7/72 inch or 9/96 inch */ SET_10_CHARACTERS_PER_INCH=P10 SET_12_CHARACTERS_PER_INCH=P12 SET_13_CHARACTERS_PER_INCH= /* */ SET_15_CHARACTERS_PER_INCH= /* The proprinter does not */ /* support 15 pitch except in */ /* graphic mode */ SET_17_CHARACTERS_PER_INCH=P17 /* Condensed mode */ SET_20_CHARACTERS_PER_INCH= START_DOUBLE_WIDTH_CHARACTERS=P05 END_DOUBLE_WIDTH_CHARACTERS=CDW /* These control codes are used to select the source drawer number */ /* when your printer has the dual drawer sheetfeed option. */ SELECT_DRAWER1=SD1 SELECT_DRAWER2=SD2 SELECT_DRAWER3= SELECT_ENVELOPE=ENV /* Envelope */ /* These control codes select the print mode (quality of print). */ SELECT_DRAFT_QUALITY= SELECT_LETTER_QUALITY= SELECT_ENHANCED_QUALITY= SELECT_SETUP_QUALITY= /* These control codes */ SET_DUPLEX= SET_DUPLEX_TUMBLE= RESET_DUPLEX= /* These control codes set page orientation */ SET_PORTRAIT_ORIENT=SPO SET_LANDSCAPELEFT_ORIENT=SLO SET_PORTRAITUPDWN_ORIENT=SPO SET_LANDSCAPERGHT_ORIENT=SLO /* These control codes move the print position (Horizontal/Vertical) */ FORWARD_HORIZONTAL_SKIP=FRM word-value(LH) FORWARD_VERTICAL_STEP_FEED=VLF byte-value /* These control codes select the printer font via global font ID */ SET_FONT_GLOBAL= SET_GFID_0003=SFG 00 03 00 90 01 01 03 52 CDW /* OCR-B.10 */ SET_GFID_0005=SFG 00 05 00 90 01 01 03 52 CDW /* Orator.10 */ SET_GFID_0011=SFG 00 0B 00 90 01 01 03 52 CDW /* Courier.10 */ SET_GFID_0012=SFG 00 0C 00 90 01 01 03 52 CDW /* Prestige.10 */ SET_GFID_0013=SFG 00 0B 00 90 01 01 03 52 CDW /* Artisan.10 */ SET_GFID_0018=SFG 00 12 00 90 01 01 03 52 CDW /* Courier.Italic.10 */ SET_GFID_0019=SFG 00 13 00 90 01 01 03 52 CDW /* OCR-A.10 */ SET_GFID_0020=SFG 00 14 00 90 01 01 03 52 CDW /* Pica.10 */ SET_GFID_0030=SFG 00 1E 00 90 01 01 03 52 CDW /* Math-Symbol.10 */ SET_GFID_0038=SFG 00 26 00 90 01 01 03 52 CDW /* Orator.Bold.10 */ SET_GFID_0039=SFG 00 27 00 90 01 01 03 52 CDW /* Gothic.Bold.10 */ SET_GFID_0040=SFG 00 28 00 90 01 01 03 52 CDW /* Gothic-Text.10 */ SET_GFID_0041=SFG 00 29 00 90 01 01 03 52 CDW /* Roman-text.10 */ SET_GFID_0042=SFG 00 2A 00 90 01 01 03 52 CDW /* Serif-text.10 */ SET_GFID_0043=SFG 00 2B 00 90 01 01 03 52 CDW /* Serif-text.Italic.10*/ SET_GFID_0044=SFG 00 2C 00 90 01 01 03 52 CDW /* Katakana-gothic.10 */ SET_GFID_0045=SFG 00 2D 00 90 01 01 03 52 CDW /* APL.10 */ SET_GFID_0046=SFG 00 2E 00 90 01 01 03 52 CDW /* Courier.Bold.10 */ SET_GFID_0050=SFG 00 32 00 90 01 01 03 52 CDW /* Shalom.10 */ SET_GFID_0066=SFG 00 42 00 78 01 01 03 52 CDW /* Gothic-text.12 */ SET_GFID_0068=SFG 00 44 00 78 01 01 03 52 CDW /* Gothic-text.Italic.12*/ SET_GFID_0069=SFG 00 45 00 78 01 01 03 52 CDW /* Gothic.Bold.12 */ SET_GFID_0070=SFG 00 46 00 78 01 01 03 52 CDW /* Serif-text.12 */ SET_GFID_0071=SFG 00 47 00 78 01 01 03 52 CDW /* Serif-text.Italic.12*/ SET_GFID_0072=SFG 00 48 00 78 01 01 03 52 CDW /* Serif.Bold.12 */ SET_GFID_0080=SFG 00 73 00 78 01 01 03 52 CDW /* Math-Symbol.12 */ SET_GFID_0084=SFG 00 54 00 78 01 01 03 52 CDW /* Script.12 */ SET_GFID_0085=SFG 00 55 00 78 01 01 03 52 CDW /* Courier.12 */ SET_GFID_0086=SFG 00 56 00 78 01 01 03 52 CDW /* Prestige.12 */ SET_GFID_0087=SFG 00 57 00 78 01 01 03 52 CDW /* Letter-gothic.12 */ SET_GFID_0091=SFG 00 70 00 78 01 01 03 52 CDW /* Light.Italic.12 */ SET_GFID_0107=SFG 00 55 00 78 01 01 03 52 CDW /* Courier.12 */ SET_GFID_0110=SFG 00 6E 00 78 01 01 03 52 CDW /* Letter-Gothic.Bold.12*/ SET_GFID_0111=SFG 00 6F 00 78 01 01 03 52 CDW /* Prestige-Elite.Bold.12*/ SET_GFID_0112=SFG 00 70 00 78 01 01 03 52 CDW /* Prestige.Italic.12 */ SET_GFID_0115=SFG 00 73 00 78 01 01 03 52 CDW /* Math-Symbol.12 */ SET_GFID_0155=SFG 00 9B 00 78 02 01 03 52 CDW /* Boldface.Italic.PSM*/ SET_GFID_0158=SFG 00 9E 00 78 02 01 03 52 CDW /* Modern.PSM */ SET_GFID_0159=SFG 00 9F 00 78 02 01 03 52 CDW /* Document.PSM */ SET_GFID_0160=SFG 00 A0 00 78 02 01 03 52 CDW /* Essay.PSM */ SET_GFID_0162=SFG 00 A2 00 78 02 01 03 52 CDW /* Essay.Italic.PSM */ SET_GFID_0163=SFG 00 A3 00 78 02 01 03 52 CDW /* Essay.Bold.PSM */ SET_GFID_0168=SFG 00 A8 00 78 02 01 03 52 CDW /* Barak.PSM */ SET_GFID_0173=SFG 00 AD 00 78 02 01 03 52 CDW /* Essay.Light.PSM */ SET_GFID_0175=SFG 00 AF 00 78 02 01 03 52 CDW /* Document.PSM */ SET_GFID_0176=SFG 00 B0 00 78 02 01 03 52 CDW /* Boldface.PSM */ SET_GFID_0177=SFG 00 9B 00 78 02 01 03 52 CDW /* Boldface.Italic.PSM*/ SET_GFID_0193=SFG 00 73 00 78 01 01 03 52 CDW /* Math-Symbol.12 */ SET_GFID_0198=SFG 00 1E 00 90 01 01 03 52 CDW /* Math-Symbol.10 */ SET_GFID_0204=SFG 00 CC 00 6C 01 01 03 52 CDW /* Gothic-text.13 */ SET_GFID_0221=SFG 00 DD 00 60 01 01 03 52 CDW /* Prestige.15 */ SET_GFID_0222=SFG 00 E6 00 60 01 01 03 52 CDW /* Gothic-text.15 */ SET_GFID_0223=SFG 00 DF 00 60 01 01 03 52 CDW /* Courier.15 */ SET_GFID_0225=SFG 00 E1 00 60 01 01 03 52 CDW /* Math-symbol.15 */ SET_GFID_0229=SFG 00 E5 00 60 01 01 03 52 CDW /* Serif-text.15 */ SET_GFID_0230=SFG 00 E6 00 60 01 01 03 52 CDW /* Gothic-text.15 */ SET_GFID_0245=SFG 00 2E 00 90 01 01 03 52 P05 /* Courier.Bold.5 */ SET_GFID_0252=SFG 00 FC 00 54 01 01 03 52 CDW /* Courier.15 */ SET_GFID_0253=SFG 00 FD 00 54 01 01 03 52 CDW /* Courier.Bold.17 */ SET_GFID_0254=SFG 00 FE 00 55 01 01 03 52 CDW /* Courier.17 */ SET_GFID_0280=SFG 01 18 00 48 01 01 03 52 CDW /* APL.20 */ SET_GFID_0281=SFG 01 19 00 48 01 01 03 52 CDW /* Gothic-text.20 */ SET_GFID_0290=SFG 01 22 00 36 01 01 03 52 CDW /* Gothic-text.27 */ SET_GFID_0751=SFG 11 37 00 A0 01 03 03 52 CDW /* Sonoran-serif.8pt */ SET_GFID_1051=SFG 11 37 00 C8 01 03 03 52 CDW /* Sonoran-serif.10pt */ SET_GFID_1053=SFG 11 4B 00 C8 01 03 03 52 CDW /* Sonoran-serif.bold.10pt*/ SET_GFID_1056=SFG 11 B7 00 C8 01 03 03 52 CDW /* Sonoran-serif.italic.10pt*/ SET_GFID_1351=SFG 11 37 00 F0 01 03 03 52 CDW /* Sonoran-serif.12pt */ SET_GFID_1653=SFG 11 4B 01 40 01 03 03 52 CDW /* Sonoran-serif.Bold.16pt*/ SET_GFID_2103=SFG 11 4B 01 E0 01 03 03 52 CDW /* Sonoran-serif.Bold.24pt*/ /* Color Specifications */ START_COLOR_BLUE= END_COLOR_BLUE= START_COLOR_GREEN= END_COLOR_GREEN= START_COLOR_CYAN= END_COLOR_CYAN= START_COLOR_RED= END_COLOR_RED= START_COLOR_MAGENTA= END_COLOR_MAGENTA= START_COLOR_YELLOW= END_COLOR_YELLOW= START_COLOR_BLACK= END_COLOR_BLACK= START_COLOR_WHITE= END_COLOR_WHITE= /* Highlight Specifications */ /* These definitions will determine how things which are sent by the */ /* host to be displayed or printed as underlined, reverse video, or */ /* blinking will be highlighted on your printer. */ START_HIGHLIGHT_INTENSE=SDS /* This is double strike */ END_HIGHLIGHT_INTENSE=CDS START_HIGHLIGHT_UNDERLINE=SUL END_HIGHLIGHT_UNDERLINE=CUL START_HIGHLIGHT_REVERSE_VIDEO= END_HIGHLIGHT_REVERSE_VIDEO= START_HIGHLIGHT_BLINK= END_HIGHLIGHT_BLINK= /* Character Definitions */ SPACE=SPA EXCLAMATION_POINT=21 QUOTATION_MARKS=22 NUMBER_SIGN=23 DOLLAR_SIGN=24 PERCENT_SIGN=25 AMPERSAND=26 APOSTROPHE=27 LEFT_PARENTHESIS=28 RIGHT_PARENTHESIS=29 ASTERISK=2A PLUS_SIGN=2B COMMA=2C HYPHEN=2D PERIOD=2E SLASH=2F ZERO=0 ONE=1 TWO=2 THREE=3 FOUR=4 FIVE=5 SIX=6 SEVEN=7 EIGHT=8 NINE=9 COLON=3A SEMICOLON=3B LESS_THAN_SIGN=3C EQUAL_SIGN=3D GREATER_THAN_SIGN=3E QUESTION_MARK=3F AT_SIGN=40 A_CAPITAL=A B_CAPITAL=B C_CAPITAL=C D_CAPITAL=D E_CAPITAL=E F_CAPITAL=F G_CAPITAL=G H_CAPITAL=H I_CAPITAL=I J_CAPITAL=J K_CAPITAL=K L_CAPITAL=L M_CAPITAL=M N_CAPITAL=N O_CAPITAL=O P_CAPITAL=P Q_CAPITAL=Q R_CAPITAL=R S_CAPITAL=S T_CAPITAL=T U_CAPITAL=U V_CAPITAL=V W_CAPITAL=W X_CAPITAL=X Y_CAPITAL=Y Z_CAPITAL=Z LEFT_BRACKET=5B BACKSLASH=5C RIGHT_BRACKET=5D CIRCUMFLEX_ACCENT=5E UNDERLINE=5F GRAVE_ACCENT=60 A_SMALL=a B_SMALL=b C_SMALL=c D_SMALL=d E_SMALL=e F_SMALL=f G_SMALL=g H_SMALL=h I_SMALL=i J_SMALL=j K_SMALL=k L_SMALL=l M_SMALL=m N_SMALL=n O_SMALL=o P_SMALL=p Q_SMALL=q R_SMALL=r S_SMALL=s T_SMALL=t U_SMALL=u V_SMALL=v W_SMALL=w X_SMALL=x Y_SMALL=y Z_SMALL=z LEFT_BRACE=7B VERTICAL_BAR=7C RIGHT_BRACE=7D TILDE_ACCENT=7E C_CEDILLA_CAPITAL=80 U_DIAERESIS_SMALL=81 E_ACUTE_SMALL=82 A_CIRCUMFLEX_SMALL=83 A_DIAERESIS_SMALL=84 A_GRAVE_SMALL=85 A_OVERCIRCLE_SMALL=86 C_CEDILLA_SMALL=87 E_CIRCUMFLEX_SMALL=88 E_DIAERESIS_SMALL=89 E_GRAVE_SMALL=8A I_DIAERESIS_SMALL=8B I_CIRCUMFLEX_SMALL=8C I_GRAVE_SMALL=8D A_DIAERESIS_CAPITAL=8E A_OVERCIRCLE_CAPITAL=8F E_ACUTE_CAPITAL=90 AE_DIPTHONG_SMALL=91 AE_DIPTHONG_CAPITAL=92 O_CIRCUMFLEX_SMALL=93 O_DIAERESIS_SMALL=94 O_GRAVE_SMALL=95 U_CIRCUMFLEX_SMALL=96 U_GRAVE_SMALL=97 Y_DIAERESIS_SMALL=98 O_DIAERESIS_CAPITAL=99 U_DIAERESIS_CAPITAL=9A O_SLASH_SMALL=9B POUND_SIGN=9C O_SLASH_CAPITAL=9D MULTIPLY_SIGN=9E A_ACUTE_SMALL=A0 I_ACUTE_SMALL=A1 O_ACUTE_SMALL=A2 U_ACUTE_SMALL=A3 N_TILDE_SMALL=A4 N_TILDE_CAPITAL=A5 ORDINAL_INDICATOR_FEMININE=A6 ORDINAL_INDICATOR_MASCULINE=A7 QUESTION_MARK_INVERTED=A8 REGISTERED_TRADEMARK_SYMBOL=A9 LOGICAL_NOT=AA ONE_HALF=AB ONE_QUARTER=AC EXCLAMATION_POINT_INVERTED=AD LEFT_ANGLE_QUOTES=AE RIGHT_ANGLE_QUOTES=AF A_ACUTE_CAPITAL=B5 A_CIRCUMFLEX_CAPITAL=B6 A_GRAVE_CAPITAL=B7 COPYRIGHT_SYMBOL=B8 CENT_SIGN=BD YEN_SIGN=BE A_TILDE_SMALL=C6 A_TILDE_CAPITAL=C7 INTERNATIONAL_CURRENCY_SYMBOL=CF ETH_ICELANDIC_SMALL=D0 ETH_ICELANDIC_CAPITAL=D1 E_CIRCUMFLEX_CAPITAL=D2 E_DIAERESIS_CAPITAL=D3 E_GRAVE_CAPITAL=D4 I_DOTLESS_SMALL=D5 I_ACUTE_CAPITAL=D6 I_CIRCUMFLEX_CAPITAL=D7 I_DIAERESIS_CAPITAL=D8 VERTICAL_LINE_BROKEN=DD I_GRAVE_CAPITAL=DE O_ACUTE_CAPITAL=E0 SHARP_S_SMALL=E1 O_CIRCUMFLEX_CAPITAL=E2 O_GRAVE_CAPITAL=E3 O_TILDE_SMALL=E4 O_TILDE_CAPITAL=E5 MICRO_SYMBOL=E6 THORN_ICELANDIC_SMALL=E7 THORN_ICELANDIC_CAPITAL=E8 U_ACUTE_CAPITAL=E9 U_CIRCUMFLEX_CAPITAL=EA U_GRAVE_CAPITAL=EB Y_ACUTE_SMALL=EC Y_ACUTE_CAPITAL=ED OVERLINE=EE ACUTE_ACCENT=EF SYLLABLE_HYPHEN=F0 PLUS_OR_MINUS_SIGN=F1 THREE_QUARTERS=F3 PARAGRAPH_SYMBOL=F4 SECTION_SYMBOL=F5 DIVIDE_SIGN=F6 CEDILLA=F7 DEGREE_SYMBOL=F8 DIAERESIS=F9 MIDDLE_DOT_ACCENT=FA ONE_SUPERSCRIPT=FB THREE_SUPERSCRIPT=FC TWO_SUPERSCRIPT=FD REQUIRED_SPACE=SPA /**********************************************************************/ /* PC5250 Internal Data Area. */ /* Do not change these statements. */ /**********************************************************************/ TOP_MARGIN= LEFT_MARGIN= DYNAMIC_START_JOB=00 00 00 00 00 00 00 00 00 00 00 DYNAMIC_END_JOB=00 00 DYNAMIC_SET_PAGE_LENGTH=00 00 00 PRINTER_ID=40 19 /* End of Definition File */