get_member_strid

get structure id of a member
     id            - structure type ID
     member_offset - member offset. The offset can be
                     any offset in the member. For example,
                     is a member is 4 bytes long and starts
                     at offset 2, then 2, 3, 4, 5 denote
                     the same structure member.
returns: -1 if bad structure type ID is passed
            or no such member in the structure
         otherwise returns structure id of the member.
         If the current member is not a structure, returns -1.

long get_member_strid(long id, long member_offset);

Last updated