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.

16 lines
376 B

  1. #ifndef _SMTP_BASE64_
  2. #define _SMTP_BASE64_
  3. BOOL uudecode(char * bufcoded,
  4. BUFFER * pbuffdecoded,
  5. DWORD * pcbDecoded,
  6. BOOL fBase64
  7. );
  8. BOOL uuencode( BYTE * bufin,
  9. DWORD nbytes,
  10. BUFFER * pbuffEncoded,
  11. BOOL fBase64 );
  12. #endif // _SMTP_BASE64_