Mercurial > yaffs-ecoscentric-gpl
view yaffs_packedtags2.h @ 83:409ff4ae7a4a
Fix rename over problem
| author | charles <charles> |
|---|---|
| date | Tue, 20 Sep 2005 05:22:43 +0000 |
| parents | 794fd064bd36 |
| children | b8f20fdc3a58 |
line wrap: on
line source
/* This is used to pack YAFFS2 tags, not YAFFS1tags. */ #ifndef __YAFFS_PACKEDTAGS2_H__ #define __YAFFS_PACKEDTAGS2_H__ #include "yaffs_guts.h" #include "yaffs_ecc.h" typedef struct { unsigned sequenceNumber; unsigned objectId; unsigned chunkId; unsigned byteCount; } yaffs_PackedTags2TagsPart; typedef struct { yaffs_PackedTags2TagsPart t; yaffs_ECCOther ecc; } yaffs_PackedTags2; void yaffs_PackTags2(yaffs_PackedTags2 * pt, const yaffs_ExtendedTags * t); void yaffs_UnpackTags2(yaffs_ExtendedTags * t, yaffs_PackedTags2 * pt); #endif
