home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / bp7os2 / bpos2r.001 / ENGLISH.PAS < prev    next >
Pascal/Delphi Source File  |  1993-11-12  |  5KB  |  161 lines

  1. This file contains all the comments in the c't patch. The comments are
  2. separated by file, and are in the same order as they appear in the program.
  3. German appears first, followed by English.
  4.  
  5.  
  6. File: Compatib.Pas   Unit Compatib
  7.      { Nur die Int-Vektoren für INT 0,4,5,6,7,$10 können }
  8.      { gesetzt/gelesen werden.                           }
  9.      { Only the int vectors for INT 0,4,5,6,7,$10 can be }
  10.      { set and read.                                     }
  11.  
  12. File: PatchBP.Pas    Program PatchBP
  13.      WriteLn('Fehler beim Patchen! Abbruch.');
  14.      WriteLn('Error during patch!  Aborted.');
  15.  
  16.      WriteLn('Aufruf: PatchBP <Dateiname> C [701]  für BPC.EXE');
  17.      WriteLn('Call:   PatchBP <filename> C [701]  for BPC.EXE');
  18.  
  19.      WriteLn('        PatchBP <Dateiname> I [701]  für BP.EXE');
  20.      WriteLn('        PatchBP <filename> I [701]  for BP.EXE');
  21.  
  22.      WriteLn('        PatchBP <Dateiname> R [701]  für BP.REZ');
  23.      WriteLn('        PatchBP <filename> R [701]  for BP.REZ');
  24.  
  25.      { Kein InitTask() bei Programmstart. }
  26.      { No InitTask() at the start of the program. }
  27.  
  28.      { Application Flags = 2. }
  29.      { Application Flags = 2. }
  30.  
  31.      { (Compatible with Windowing API). }
  32.      { (Compatible with Windowing API). }
  33.  
  34.      { Operating System = OS/2. }
  35.      { Operating System = OS/2. }
  36.  
  37.      { Stub gibt 'This program requires OS/2' aus. }
  38.      { Stub writes 'This program requires OS/2'. }
  39.  
  40.      { Compiler meldet sich mit 'Version 7OS2'. }
  41.      { Compiler identifies itself with 'Version 7OS2'. }
  42.  
  43.      { Kommandozeilen-Parameter -CO = OS/2 target. }
  44.      { Command line parameter -CO = OS/2 target. }
  45.  
  46.      { Standard-Unit-Extension ist 'TPO'. }
  47.      { Standard-Unit-Extension is 'TPO'. }
  48.  
  49.      { 'OS2' als bedingtes Symbol definieren. }
  50.      { define 'OS2' as conditional symbol. }
  51.  
  52.      { Compiler|Zielplattform einstellen = 'OS/2'. }
  53.      { set Compiler|Target = 'OS/2'. }
  54.  
  55.      { Optionen|Compiler = 'OS/2'. }
  56.      { Options|Compiler = 'OS/2'. }
  57.  
  58.      { Optionen|Speicherauslegung = 'OS/2'. }
  59.      { Options|Memory sizes = 'OS/2'. }
  60.  
  61.      { Standard-Library ist 'OS2.TPL'. }
  62.      { Standard library is 'OS2.TPL'. }
  63.  
  64.      { Compiler|Zielplattform = 'OS/2'. }
  65.      { Compiler|Target = 'OS/2'. }
  66.  
  67.      { Compile-Box = 'OS/2'. }
  68.      { Compile box = 'OS/2'. }
  69.  
  70. File: System     Unit System
  71.      { Zeiger auf Kommandozeile.              }
  72.      { Pointer to command line                }
  73.  
  74.      { Selektor der Heapliste.                }
  75.      { Heap list selector                     }
  76.  
  77.      { Grenze für 'Small Blocks'.             }
  78.      { Small block limit                      }
  79.  
  80.      { Größe eines globalen Heap-Blocks.      }
  81.      { Size of a global heap block            }
  82.  
  83.      { Heap-Allozierungsflags, SEG_NONSHARED. }
  84.      { Heap allocation flags, SEG_NONSHARED.  }
  85.  
  86.      { Zeiger auf HeapError-Funktion.         }
  87.      { Pointer to HeapError function.         }
  88.  
  89.      { Zeiger auf Exit-Prozedur.              }
  90.      { Pointer to Exit Procedure.             }
  91.  
  92.      { Exit-Code des Programms.               }
  93.      { Program exit code.                     }
  94.  
  95.      { Adresse des Runtime-Errors.            }
  96.      { Runtime error address                  }
  97.  
  98.      { Selektor des Environment-Blocks.       }
  99.      { Environment block selector             }
  100.  
  101.      { Fehlercode der I/O-Operationen.        }
  102.      { I/O operation error code               }
  103.  
  104.      { Startwert für Zufallsgenerator.        }
  105.      { Random number generator seed.          }
  106.  
  107.      { Selektor-Inkrement-Wert.               }
  108.      { Selector increment value.              }
  109.  
  110.      { Prozessortyp.                          }
  111.      { Processor type.                        }
  112.  
  113.      { Dateimodus, OPEN_SHARE_DENYNONE.       }
  114.      { OPEN_SHARE_DENYNONE.                   }
  115.  
  116.      { Standard-Eingabe.                      }
  117.      { Standard input.                        }
  118.  
  119.      { Standard-Ausgabe.                      }
  120.      { Standard output.                       }
  121.  
  122.      { Alter Vektor für INT $00.              }
  123.      { Old INT $00 vector.                    }
  124.  
  125.      { Alter Vektor für INT $0C.              }
  126.      { Old INT $0C vector.                    }
  127.  
  128.      { Alter Vektor für INT $0D.              }
  129.      { Old INT $0D vector.                    }
  130.  
  131.  
  132. File: Thread      Program ThreadTest
  133.      { Stack-Überprüfung sollte deaktiviert werden. }
  134.      { Stack checking should be deactivated. }
  135.  
  136.      { Beende nur Thread1, nicht Programm. }
  137.      { End only Thread1, not the program. }
  138.  
  139.      { Stack-Überprüfung kann wieder aktiviert werden. }
  140.      { Stack checking can be re-activated. }
  141.  
  142.      { Alloziere Stack für Thread1. }
  143.      { Allocated stack for Thread1. }
  144.  
  145.      { Zeiger auf Prozedur f. Thread}
  146.      { Pointer to Procedure for Thread}
  147.  
  148.      { Ende des Stackbereichs als Anfangswert für SS:SP. }
  149.      { End of the stack area as initial value for SS:SP. }
  150.  
  151.      { Gib Stack für Thread1 frei. }
  152.      { free stack for Thread1. }
  153.  
  154. File: Video.Pas       Program DirectVodeoAccess
  155.      { Lese Zeiger auf logischen Video-Buffer.}
  156.      { Read pointer to logical video buffer.}
  157.  
  158.      { Bildschirm aktualisieren. }
  159.      { update display. }
  160.  
  161.