Guest User

bexcel binary template black desert

a guest
Apr 11th, 2016
1,470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.20 KB | None | 0 0
  1.  
  2. LittleEndian();
  3.  
  4. typedef struct {
  5.     SetBackColor( cGray );
  6.     int64 len;
  7.     SetBackColor( cLtGreen );
  8.     wchar_t val[len];
  9. } LV;
  10.  
  11. typedef struct {
  12.     LV value[1] <optimize=false>;
  13.     SetBackColor( cLtYellow );
  14.     int32 type;
  15. } TLV;
  16.  
  17. typedef struct {
  18.     SetBackColor( cLtRed );
  19.     int32 index1;
  20.     SetBackColor( cLtBlue );
  21.     int32 index2;
  22.    
  23.     SetBackColor( cDkAqua );
  24.     int32 cellCount;
  25.  
  26.     LV cell[cellCount] <optimize=false>;
  27. } ROW;
  28.  
  29. typedef struct {
  30.     LV sheetName[1] <optimize=false>;
  31.  
  32.     SetBackColor( cLtRed );
  33.     int32 index1;
  34.     SetBackColor( cLtBlue );
  35.     int32 index2;
  36.     SetBackColor( cDkAqua );
  37.     int32 columnCount;
  38.  
  39.     LV columnHeader[columnCount] <optimize=false>;
  40.    
  41.     SetBackColor( cDkGreen );
  42.     int32 rowCount;
  43.  
  44.     ROW row[rowCount] <optimize=false>;
  45.  
  46.     SetBackColor( cDkGreen );
  47.     int32 c; // 01AD70 01BF90
  48.     TLV x[c] <optimize=false>;
  49.    
  50.     SetBackColor( cRed );
  51.     int32 c;
  52.     TLV x[c] <optimize=false>;
  53. } SHEET;
  54.  
  55.  
  56. SetBackColor( cDkAqua );
  57. int32 sheetCount;
  58.  
  59. TLV sheetName[sheetCount] <optimize=false>;
  60.  
  61. SetBackColor( cDkGreen );
  62. int32 sheetCount;
  63.  
  64. SHEET sheet[sheetCount] <optimize=false>;
Advertisement
Add Comment
Please, Sign In to add comment