00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __COMMON_INTTOSTRING_H 00006 #define __COMMON_INTTOSTRING_H 00007 00008 #include <stddef.h> 00009 #include "Types.h" 00010 00011 void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10); 00012 void ConvertUInt64ToString(UInt64 value, wchar_t *s); 00013 00014 void ConvertInt64ToString(Int64 value, char *s); 00015 void ConvertInt64ToString(Int64 value, wchar_t *s); 00016 00017 #endif
1.5.6