Source code of Windows XP (NT5)
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.

60 lines
1.5 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: cmuufns.h
  4. //
  5. // Module: CMSECURE.LIB
  6. //
  7. // Synopsis: Definitions for CM's UUEncode and UUDecode functions
  8. //
  9. // Copyright (c) 1996-1998 Microsoft Corporation
  10. //
  11. // Author: quintinb Created Header 08/18/99
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef _CMUUFNS_INC_
  15. #define _CMUUFNS_INC_
  16. //************************************************************************
  17. // define's
  18. //************************************************************************
  19. //************************************************************************
  20. // structures, typdef's
  21. //************************************************************************
  22. //************************************************************************
  23. // externs
  24. //************************************************************************
  25. //************************************************************************
  26. // function prototypes
  27. //************************************************************************
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. BOOL uudecode(
  32. const char * bufcoded,
  33. CHAR * pbuffdecoded,
  34. LPDWORD pcbDecoded );
  35. BOOL uuencode( const BYTE* bufin,
  36. DWORD nbytes,
  37. CHAR * pbuffEncoded,
  38. DWORD outbufmax);
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif // _CMUUFNS_INC_