Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BranchTypes.h « Branch « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6472ef6bbdb64f332d76046546c3f2eb3fc3f753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* BranchTypes.h */

#ifndef __BRANCHTYPES_H
#define __BRANCHTYPES_H

typedef unsigned char Byte;
typedef unsigned short UInt16;

#ifdef _LZMA_UINT32_IS_ULONG
typedef unsigned long UInt32;
#else
typedef unsigned int UInt32;
#endif

#endif