Advertisement
Brick

MM2 ArgEntry

Oct 8th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. struct ArgEntry
  2. {
  3.     DWORD   WordCount;
  4.     LPCSTR* WordArray;
  5. };
  6.  
  7. struct HashTable
  8. {
  9.     WORD word0;
  10.     bool FixedSize;
  11.     bool bool3;
  12.     DWORD lpUnk4;
  13.     int MaxSlots;
  14.     DWORD UsedSlots;
  15.    
  16.     struct Entry
  17.     {
  18.         LPCSTR      Name;
  19.         LPVOID      Value;
  20.         Entry*  NextEntry;
  21.     } **EntryList;
  22.  
  23.     struct Position
  24.     {
  25.         DWORD   Index;
  26.         LPCSTR  Name;
  27.         LPVOID  Value;
  28.     };
  29.    
  30.     HashTable *PreviousHashTable;
  31. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement