Annotation of elwix/tools/oldlzma/SRC/7zip/Archive/7z_C/7zMethodID.h, revision 1.1

1.1     ! misho       1: /* 7zMethodID.h */
        !             2: 
        !             3: #ifndef __7Z_METHOD_ID_H
        !             4: #define __7Z_METHOD_ID_H
        !             5: 
        !             6: #include "7zTypes.h"
        !             7: 
        !             8: #define kMethodIDSize 15
        !             9:   
        !            10: typedef struct _CMethodID
        !            11: {
        !            12:   Byte ID[kMethodIDSize];
        !            13:   Byte IDSize;
        !            14: } CMethodID;
        !            15: 
        !            16: int AreMethodsEqual(CMethodID *a1, CMethodID *a2);
        !            17: 
        !            18: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>