> a stuckturából a relativ címeket "offsetof" operátorral minden kiegészítés nélkül kinyerheted, de nem tudom melyik headerben találod.
struct setup
{
.
.
char xyz;
.
.
}
unsigned int xyz_addr = ( ( unsigned int ) & ( ( struct setup* ) 0 )->xyz );
http://stackoverflow.com/questions/9788679/how-to-get-the-relative-adress-of-a-field-in-a-structure-dump-c
-zulu