Returns the offset of dynamic fields in the class.
unsigned __cdecl Field_GetOffset(struct fieldblock *field);
Returns the offset of the field relative to the object for non-static fields. Returns 0 (zero) for static fields.
*field | The field block of the field. The underlying structure of field block is not defined; it is used only to prevent accidental type misuse using the alternative, PVOID. |
Note This function accounts for the MSReserved value at the top of structures generated by msjavah. This means you can just add this value to the base of the object to get to the data.