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.

54 lines
963 B

  1. /*++
  2. Copyright (c) Microsoft 1998, All Rights Reserved
  3. Module Name:
  4. strings.h
  5. Abstract:
  6. This module contains the public function definitions for the routines
  7. in strings.c that handle conversion of integer/data buffer to/from
  8. string represenation
  9. Environment:
  10. User mode
  11. Revision History:
  12. May-98 : Created
  13. --*/
  14. #ifndef __STRINGS_H__
  15. #define __STRINGS_H__
  16. VOID
  17. Strings_CreateDataBufferString(
  18. IN PCHAR DataBuffer,
  19. IN ULONG DataBufferLength,
  20. IN ULONG NumBytesToDisplay,
  21. IN ULONG DisplayBlockSize,
  22. OUT PCHAR *BufferString
  23. );
  24. VOID
  25. Strings_StringToUnsigned(
  26. IN PCHAR InString,
  27. IN ULONG Base,
  28. OUT PCHAR *endp,
  29. OUT PULONG pValue
  30. );
  31. BOOL
  32. Strings_StringToUnsignedList(
  33. IN PCHAR InString,
  34. IN ULONG UnsignedSize,
  35. IN ULONG Base,
  36. OUT PCHAR *UnsignedList,
  37. OUT PULONG nUnsigneds
  38. );
  39. #endif