SAMV71 Xplained Ultra Software Package 1.5

strings.h

00001 /*++
00002 
00003 Copyright (c) Microsoft 1998, All Rights Reserved
00004 
00005 Module Name:
00006 
00007     strings.h
00008 
00009 Abstract:
00010 
00011     This module contains the public function definitions for the routines
00012     in strings.c that handle conversion of integer/data buffer to/from 
00013     string represenation
00014 
00015 Environment:
00016 
00017     User mode
00018 
00019 Revision History:
00020 
00021     May-98 : Created 
00022 
00023 --*/
00024 
00025 #ifndef __STRINGS_H__
00026 #define __STRINGS_H__
00027 
00028 VOID
00029 Strings_CreateDataBufferString(
00030     IN  PCHAR    DataBuffer,
00031     IN  ULONG    DataBufferLength,
00032     IN  ULONG    NumBytesToDisplay,
00033     IN  ULONG    DisplayBlockSize,
00034     OUT PCHAR    *BufferString
00035 );
00036 
00037 VOID
00038 Strings_StringToUnsigned(
00039     IN  PCHAR   InString,
00040     IN  ULONG   Base,
00041     OUT PCHAR   *endp,
00042     OUT PULONG  pValue
00043 );
00044 
00045 BOOL
00046 Strings_StringToUnsignedList(
00047     IN  PCHAR   InString,
00048     IN  ULONG   UnsignedSize,
00049     IN  ULONG   Base,
00050     OUT PCHAR   *UnsignedList,
00051     OUT PULONG  nUnsigneds
00052 );
00053 
00054 #endif
00055 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines