Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
904 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. uuencode.hxx
  5. Abstract:
  6. General uuencode and uudecode routine declaration.
  7. Author:
  8. Ming Lu (MingLu) 1-Feb-2000
  9. Revision History:
  10. --*/
  11. #ifndef _UUENCODE_HXX_
  12. #define _UUENCODE_HXX_
  13. /************************************************************
  14. * Include Headers
  15. ************************************************************/
  16. #include "buffer.hxx"
  17. /************************************************************
  18. * Function declarations
  19. ************************************************************/
  20. BOOL
  21. uudecode(
  22. char * bufcoded,
  23. BUFFER * pbuffdecoded,
  24. DWORD * pcbDecoded = NULL,
  25. BOOL fBase64 = FALSE
  26. );
  27. BOOL
  28. uuencode(
  29. BYTE * pchData,
  30. DWORD cbData,
  31. BUFFER * pbuffEncoded,
  32. BOOL fBase64 = FALSE
  33. );
  34. #endif