Ejemplo n.º 1
0
        public static ChapterCompress BytesToChaptercompress(byte[] bytes)
        {
            ChapterCompress result = default(ChapterCompress);
            int             num    = 0;

            result.offset = BytesToStruct.GetInt32(4, ref num, bytes);
            result.length = BytesToStruct.GetInt32(4, ref num, bytes);
            return(result);
        }
Ejemplo n.º 2
0
        public static ChapterStruct BytesToChapterStruct(byte[] bytes)
        {
            ChapterStruct result = default(ChapterStruct);
            int           num    = 0;

            result.chapter_name = BytesToStruct.GetBytes(64, ref num, bytes);
            result.offset       = BytesToStruct.GetInt32(4, ref num, bytes);
            result.lenth        = BytesToStruct.GetInt32(4, ref num, bytes);
            return(result);
        }
Ejemplo n.º 3
0
        public static TextStruct BytesToTextStruct(byte[] bytes)
        {
            TextStruct result = default(TextStruct);
            int        num    = 0;

            result.book_id                   = BytesToStruct.GetInt32(4, ref num, bytes);
            result.head_data_size            = BytesToStruct.GetInt16(2, ref num, bytes);
            result.ebk_version               = BytesToStruct.GetInt16(2, ref num, bytes);
            result.ebk_size                  = BytesToStruct.GetInt32(4, ref num, bytes);
            result.book_name                 = BytesToStruct.GetBytes(64, ref num, bytes);
            result.file_size                 = BytesToStruct.GetInt32(4, ref num, bytes);
            result.head_compress_size        = BytesToStruct.GetInt32(4, ref num, bytes);
            result.first_compress_block_size = BytesToStruct.GetInt32(4, ref num, bytes);
            result.chapter_count             = BytesToStruct.GetInt16(2, ref num, bytes);
            result.compress_block_count      = BytesToStruct.GetInt16(2, ref num, bytes);
            result.media_count               = BytesToStruct.GetInt32(4, ref num, bytes);
            result.media_data_length         = BytesToStruct.GetInt32(4, ref num, bytes);
            result.txt_compress_size         = BytesToStruct.GetInt32(4, ref num, bytes);
            return(result);
        }