You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exactly as it happens for enums, for which the decoder also provides a get method for the raw version of the data, for example:
public byte exchangeCodeRaw ()
{
return buffer.getByte(offset + 18);
}
public ExchangeCode_enum exchangeCode ()
{
return ExchangeCode_enum.get(buffer.getByte(offset + 18));
}
It would be useful to have the same raw information in the case of bitmaps. Now, to be able to get it, you need to have access to the buffer and the offset from outside the decoder and compose them as follows:
Exactly as it happens for enums, for which the decoder also provides a get method for the raw version of the data, for example:
It would be useful to have the same raw information in the case of bitmaps. Now, to be able to get it, you need to have access to the buffer and the offset from outside the decoder and compose them as follows:
It would be easier and safer to get the same data in the following way:
where MMProtections_setDecoder provides:
The text was updated successfully, but these errors were encountered: