mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 12:07:03 -06:00
20 lines
359 B
C
Executable File
20 lines
359 B
C
Executable File
// Common/Types.h
|
|
|
|
#ifndef __COMMON_TYPES_H
|
|
#define __COMMON_TYPES_H
|
|
|
|
typedef unsigned char Byte;
|
|
typedef short Int16;
|
|
typedef unsigned short UInt16;
|
|
typedef int Int32;
|
|
typedef unsigned int UInt32;
|
|
#ifdef _MSC_VER
|
|
typedef __int64 Int64;
|
|
typedef unsigned __int64 UInt64;
|
|
#else
|
|
typedef long long int Int64;
|
|
typedef unsigned long long int UInt64;
|
|
#endif
|
|
|
|
#endif
|