do u have any knowledge of what a jump thunk table is and it's purpose? i know it's used for the IAT but i cannot find much information on its usage though
Jump thunk table?
Started by nuclear123, Sep 18 2011 03:57 PM
1 reply to this topic
Sponsor:
#2 Members - Reputation: 1087
Posted 19 September 2011 - 01:36 AM
It's just a table of jumps to code which actually does the work. The point being that code outside the module can just call to well-known entry points. Those entry points are jumps to the real routines. The real routines can move around in different versions of the library and the user code doesn't need to be relinked.






