Advertisement
Guest User

Untitled

a guest
Apr 4th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. ESCB structure: 0x84 bytes long
  2.  
  3. 0x04: ulong (*e_entry)();
  4. // ...
  5. 0x10: ulong _PC; (what is this? trasla puts a function ptr here)
  6. 0x14: char* key_ent; (points to 6 bytes, probably a structure of some sort)
  7. 0x18: char* key_run; (same as key_ent)
  8. 0x1c: ushort KEY
  9. 0x1e: ushort flags
  10. 0x20: ulong (*e_open)();
  11. // ...
  12. 0x66: int* fu_table; (here's the function table)
  13. // ...
  14. 0x72: char work_groups[x] (x >= 2)
  15. // ...
  16. 0x7b: char* name // no idea what's the size of this, trasla strcpy()s into here, got to be 7 bytes or more
  17.  
  18.  
  19. NID structure:
  20.  
  21. 0x00: word x
  22. 0x02: word y
  23. 0x04: dword text
  24. 0x08: dword boxed (yet this is just a bool? kek)
  25. 0x0c: word font
  26. 0x0e: dword digits
  27. 0x12: dword wait
  28.  
  29. _RGHT: (size 0x3c)
  30.  
  31. 0x0: char* t_str[10];
  32. 0x28: word atts[10];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement