| Index: third_party/lzma/v4_43/LzmaTypes.h
|
| diff --git a/third_party/lzma/v4_43/LzmaTypes.h b/third_party/lzma/v4_43/LzmaTypes.h
|
| deleted file mode 100644
|
| index 288c5e45d7b62af14828dd53d1e6f00bc1630d2d..0000000000000000000000000000000000000000
|
| --- a/third_party/lzma/v4_43/LzmaTypes.h
|
| +++ /dev/null
|
| @@ -1,45 +0,0 @@
|
| -/*
|
| -LzmaTypes.h
|
| -
|
| -Types for LZMA Decoder
|
| -
|
| -This file written and distributed to public domain by Igor Pavlov.
|
| -This file is part of LZMA SDK 4.40 (2006-05-01)
|
| -*/
|
| -
|
| -#ifndef __LZMATYPES_H
|
| -#define __LZMATYPES_H
|
| -
|
| -#ifndef _7ZIP_BYTE_DEFINED
|
| -#define _7ZIP_BYTE_DEFINED
|
| -typedef unsigned char Byte;
|
| -#endif
|
| -
|
| -#ifndef _7ZIP_UINT16_DEFINED
|
| -#define _7ZIP_UINT16_DEFINED
|
| -typedef unsigned short UInt16;
|
| -#endif
|
| -
|
| -#ifndef _7ZIP_UINT32_DEFINED
|
| -#define _7ZIP_UINT32_DEFINED
|
| -#ifdef _LZMA_UINT32_IS_ULONG
|
| -typedef unsigned long UInt32;
|
| -#else
|
| -typedef unsigned int UInt32;
|
| -#endif
|
| -#endif
|
| -
|
| -/* #define _LZMA_SYSTEM_SIZE_T */
|
| -/* Use system's size_t. You can use it to enable 64-bit sizes supporting */
|
| -
|
| -#ifndef _7ZIP_SIZET_DEFINED
|
| -#define _7ZIP_SIZET_DEFINED
|
| -#ifdef _LZMA_SYSTEM_SIZE_T
|
| -#include <stddef.h>
|
| -typedef size_t SizeT;
|
| -#else
|
| -typedef UInt32 SizeT;
|
| -#endif
|
| -#endif
|
| -
|
| -#endif
|
|
|