Files
easy7zip/7zip/Archive/7z_C/7zMethodID.h
Igor Pavlov 3c510ba80b 4.20
2016-05-28 00:15:41 +01:00

19 lines
263 B
C
Executable File

/* 7zMethodID.h */
#ifndef __7Z_METHOD_ID_H
#define __7Z_METHOD_ID_H
#include "7zTypes.h"
#define kMethodIDSize 15
typedef struct _CMethodID
{
Byte ID[kMethodIDSize];
Byte IDSize;
} CMethodID;
int AreMethodsEqual(CMethodID *a1, CMethodID *a2);
#endif