mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-08 16:29:01 +00:00
18 lines
263 B
C
18 lines
263 B
C
/* 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
|