summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h
diff options
context:
space:
mode:
Diffstat (limited to 'installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h')
-rw-r--r--installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h b/installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h
deleted file mode 100644
index 782f930c5..000000000
--- a/installerbuilder/libinstaller/3rdparty/7zip/win/CPP/Common/IntToString.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Common/IntToString.h
-
-#ifndef __COMMON_INT_TO_STRING_H
-#define __COMMON_INT_TO_STRING_H
-
-#include <stddef.h>
-#include "Types.h"
-
-void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10);
-void ConvertUInt64ToString(UInt64 value, wchar_t *s);
-void ConvertInt64ToString(Int64 value, char *s);
-void ConvertInt64ToString(Int64 value, wchar_t *s);
-
-void ConvertUInt32ToString(UInt32 value, char *s);
-void ConvertUInt32ToString(UInt32 value, wchar_t *s);
-
-void ConvertUInt32ToHexWithZeros(UInt32 value, char *s);
-
-#endif