Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 263 Bytes

7zMethodID.h

File metadata and controls

18 lines (12 loc) · 263 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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