home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / rxjis096.zip / rxjistbl.hpp < prev   
C/C++ Source or Header  |  1997-09-06  |  1KB  |  29 lines

  1. /* product name: RXJIS                                                */
  2. /* Version:      0.91                                                 */
  3. /* author:       YANO Takashi                                         */
  4. /* target:       OS/2 Warp J3.0+                                      */
  5. /* source name:  RXJISTBL.HPP                                         */
  6. /* address:      tyano@ca2.so-net.or.jp or tyano@yamato.ibm.co.jp     */
  7. /* comment:      RXJIS is a utility functions for REXX.               */
  8. /* history: 1997-09-5 0.92                                           */
  9. /*                                                                    */
  10. /*                                                                    */
  11. #define Base64Error -1
  12. #define Base64Pad 64
  13. #define QuotedPrintableError -1
  14.  
  15. struct Seq {
  16.    PSZ seq;
  17.    int len;
  18. };
  19.  
  20. extern const CHAR Cp850ToIso8859_1Table[UCHAR_MAX+1];
  21. extern const CHAR Iso8859_1ToCp850Table[UCHAR_MAX+1];
  22. extern const CHAR Base64Table[UCHAR_MAX+1];
  23. extern const CHAR Cp852ToIso8859_2Table[UCHAR_MAX+1];
  24. extern const CHAR Iso8859_2ToCp852Table[UCHAR_MAX+1];
  25. extern const CHAR Cp857ToIso8859_9Table[UCHAR_MAX+1];
  26. extern const CHAR Iso8859_9ToCp857Table[UCHAR_MAX+1];
  27. extern const Seq ToQuotedPrintableTable[UCHAR_MAX+1];
  28. extern const LONG QuotedPrintableTable[UCHAR_MAX+1];
  29.