home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / lora299s.zip / UULIB.H < prev    next >
C/C++ Source or Header  |  1998-05-12  |  1KB  |  47 lines

  1.  
  2. // LoraBBS Version 2.99 Free Edition
  3. // Copyright (C) 1987-98 Marco Maccaferri
  4. //
  5. // This program is free software; you can redistribute it and/or modify
  6. // it under the terms of the GNU General Public License as published by
  7. // the Free Software Foundation; either version 2 of the License, or
  8. // (at your option) any later version.
  9. //
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. #ifndef _UULIB_H
  20. #define _UULIB_H
  21.  
  22. #include "collect.h"
  23.  
  24. class DLL_EXPORT TUULib
  25. {
  26. public:
  27.    TUULib (void);
  28.    ~TUULib (void);
  29.  
  30.    USHORT MaxLines;
  31.    USHORT Size;
  32.    BYTE   Buffer[128];
  33.  
  34.    USHORT Decode (PSZ pszBuffer);
  35.    USHORT Decode64 (PSZ pszBuffer);
  36.    USHORT Decode (class TCollection *Text);
  37.    USHORT Decode (class TCollection &Text);
  38.    USHORT DecodeFile (PSZ pszSource, PSZ pszDestination = NULL);
  39.    VOID   Encode (BYTE *lpBuffer, USHORT usSize);
  40.    USHORT EncodeFile (PSZ pszSource, PSZ pszDestination, PSZ pszRemote = NULL);
  41.  
  42. private:
  43. };
  44.  
  45. #endif
  46.  
  47.