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

7zMethodID.h « 7z_C « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 162fcd15ba30b16d61eb2c12c552611115d279a5 (plain)
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