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.

23 lines
529 B

  1. //----------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2000.
  5. //
  6. // File: base64.hxx
  7. //
  8. // Contents: Header file for base64 encoding routine.
  9. //
  10. //----------------------------------------------------------------------------
  11. #ifndef __BASE64_H__
  12. #define __BASE64_H__
  13. int encodeBase64Buffer(
  14. char *inBufPtr,
  15. int *inBytesPtr,
  16. WCHAR *outBufPtr,
  17. int *outBytesPtr,
  18. int outLineLen
  19. );
  20. #endif // __BASE64_H__