cpall.pas 396 B

12345678910111213141516171819202122
  1. unit cpall;
  2. interface
  3. uses
  4. { cyrillic code pages }
  5. cp1251,cp866,cp8859_5,
  6. { greek code page }
  7. cp1253,
  8. { other code pages }
  9. cp8859_1,cp850,cp437,cp1252,cp646,
  10. cp874, cp856,
  11. {$ifndef cpu16}
  12. { these are too big for a 16-bit CPU }
  13. { cp932,cp936,cp949,cp950, -> to rtl-unicode}
  14. {$endif not cpu16}
  15. cp1250,cp1254,cp1255,cp1256,cp1257,cp1258,cp852,cp8859_2;
  16. implementation
  17. end.