//-------------------------------------- //--- 010 Editor v2.0 Binary Template // // File: cnv2uni.tbl parser // Author: Maurus Cuelenaere // Revision: 0.1 // Purpose: //-------------------------------------- typedef struct { USHORT Source; USHORT Dest; } Mappings; typedef struct { CHAR BlockID[4]; UCHAR Unk[4]; UINT Size; Mappings Data[(Size-12)/4]; } RealBLOCK; typedef struct { CHAR BlockID[4]; UINT NextBlock; RealBLOCK Data; } BLOCK; CHAR[] StrRev( CHAR s[] ) { local int sz; local int up; local CHAR strng[sizeof(s)]; for (sz =sizeof(s)-1,up=0;up; string ReadMainBlock( MainBlock &block ) { return StrRev( block.ID ); } MainBlock main;