On Aug 26, 2006, at 4:52 PM, E. Tejkowski wrote:

How does one add something like this to a REALbasic struct?

char reserved[225];

If you want to treat this as an array of bytes, declare it using normal RB array syntax:

reserved(224) As Byte

If you want to treat it as a string field, declare it as a string with a byte size specifier:

reserved As String * 225

Mars Saxman
REAL Software
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to