mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 00:11:34 -06:00
20 lines
285 B
C
Executable File
20 lines
285 B
C
Executable File
// Common/Types.h
|
|
|
|
// #pragma once
|
|
|
|
#ifndef __COMMON_TYPES_H
|
|
#define __COMMON_TYPES_H
|
|
|
|
#include <basetsd.h>
|
|
|
|
typedef unsigned char UINT8;
|
|
typedef unsigned short UINT16;
|
|
typedef short INT16;
|
|
#ifndef _WINDOWS_
|
|
// typedef unsigned long UINT32;
|
|
typedef UINT8 BYTE;
|
|
#endif
|
|
|
|
#endif
|
|
|