Change signedness of some GEM resource fields, corrects working with >=32KiB resources.

This commit is contained in:
2018-03-02 13:34:04 +00:00
parent 66e4b9101d
commit 179a4e80a8
5 changed files with 133 additions and 133 deletions

View File

@@ -38,8 +38,8 @@ namespace exeinfogui.GEM
const uint ALPHAMASK = 0xFF000000; const uint ALPHAMASK = 0xFF000000;
List<int> pixels = new List<int>(); List<int> pixels = new List<int>();
byte[] data = libexeinfo.GEM.FlipPlane(icon.Data, icon.Width); byte[] data = libexeinfo.GEM.FlipPlane(icon.Data, (int)icon.Width);
byte[] mask = libexeinfo.GEM.FlipPlane(icon.Mask, icon.Width); byte[] mask = libexeinfo.GEM.FlipPlane(icon.Mask, (int)icon.Width);
for(int pos = 0; pos < data.Length; pos++) for(int pos = 0; pos < data.Length; pos++)
{ {
@@ -48,7 +48,7 @@ namespace exeinfogui.GEM
((mask[pos] & (1 << i)) != 0 ? ALPHAMASK : 0))); ((mask[pos] & (1 << i)) != 0 ? ALPHAMASK : 0)));
} }
return new Bitmap(icon.Width, icon.Height, PixelFormat.Format32bppRgba, pixels); return new Bitmap((int)icon.Width, (int)icon.Height, PixelFormat.Format32bppRgba, pixels);
} }
} }
} }

View File

@@ -95,8 +95,8 @@ namespace exeinfogui.GEM
txtText.Text = colorIcon.Monochrome.Text; txtText.Text = colorIcon.Monochrome.Text;
imgIcon.Image = GemIcon.GemIconToEto(colorIcon.Monochrome); imgIcon.Image = GemIcon.GemIconToEto(colorIcon.Monochrome);
treePlanes.DataStore = colorIcon.Color; treePlanes.DataStore = colorIcon.Color;
iconWidth = colorIcon.Monochrome.Width; iconWidth = (int)colorIcon.Monochrome.Width;
iconHeight = colorIcon.Monochrome.Height; iconHeight = (int)colorIcon.Monochrome.Height;
treePlanes.SelectRow(0); treePlanes.SelectRow(0);
if(colorIcon.Color != null && colorIcon.Color.Length >= 1 && colorIcon.Color[0] != null) if(colorIcon.Color != null && colorIcon.Color.Length >= 1 && colorIcon.Color[0] != null)
{ {

View File

@@ -67,7 +67,7 @@ namespace exeinfogui.GEM
byte[] data = new byte[node.BitBlock.Data.Length]; byte[] data = new byte[node.BitBlock.Data.Length];
int pos = 0; int pos = 0;
int w = node.BitBlock.Width / 8; int w = (int)(node.BitBlock.Width / 8);
// This flips the image. // This flips the image.
while(pos < data.Length) while(pos < data.Length)
{ {
@@ -91,7 +91,7 @@ namespace exeinfogui.GEM
for(int i = 0; i < 8; i++) for(int i = 0; i < 8; i++)
pixels.Add((b & (1 << i)) != 0 ? color : background); pixels.Add((b & (1 << i)) != 0 ? color : background);
return new Bitmap(node.BitBlock.Width, node.BitBlock.Height, PixelFormat.Format32bppRgb, pixels); return new Bitmap((int)node.BitBlock.Width, (int)node.BitBlock.Height, PixelFormat.Format32bppRgb, pixels);
} }
} }
} }

View File

@@ -125,7 +125,7 @@ namespace libexeinfo
{ {
Color = (ObjectColors)bitBlock.bi_color, Color = (ObjectColors)bitBlock.bi_color,
Height = bitBlock.bi_hl, Height = bitBlock.bi_hl,
Width = bitBlock.bi_wb * 8, Width = (uint)(bitBlock.bi_wb * 8),
X = bitBlock.bi_x, X = bitBlock.bi_x,
Y = bitBlock.bi_y Y = bitBlock.bi_y
}; };

View File

@@ -38,76 +38,76 @@ namespace libexeinfo
/// the third bit set (i.e. 0x0004) in the new file format. If file is in the new format, it is appended at the end /// the third bit set (i.e. 0x0004) in the new file format. If file is in the new format, it is appended at the end
/// with <see cref="GemResourceExtension" /> /// with <see cref="GemResourceExtension" />
/// </summary> /// </summary>
public short rsh_vrsn; public ushort rsh_vrsn;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the OBJECT structures. /// Contains an offset from the beginning of the file to the OBJECT structures.
/// </summary> /// </summary>
public short rsh_object; public ushort rsh_object;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the TEDINFO structures. /// Contains an offset from the beginning of the file to the TEDINFO structures.
/// </summary> /// </summary>
public short rsh_tedinfo; public ushort rsh_tedinfo;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the ICONBLK structures. /// Contains an offset from the beginning of the file to the ICONBLK structures.
/// </summary> /// </summary>
public short rsh_iconblk; public ushort rsh_iconblk;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the BITBLK structures. /// Contains an offset from the beginning of the file to the BITBLK structures.
/// </summary> /// </summary>
public short rsh_bitblk; public ushort rsh_bitblk;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the string pointer table. /// Contains an offset from the beginning of the file to the string pointer table.
/// </summary> /// </summary>
public short rsh_frstr; public ushort rsh_frstr;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the string data. /// Contains an offset from the beginning of the file to the string data.
/// </summary> /// </summary>
public short rsh_string; public ushort rsh_string;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the image data. /// Contains an offset from the beginning of the file to the image data.
/// </summary> /// </summary>
public short rsh_imdata; public ushort rsh_imdata;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the image pointer table. /// Contains an offset from the beginning of the file to the image pointer table.
/// </summary> /// </summary>
public short rsh_frimg; public ushort rsh_frimg;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the tree pointer table. /// Contains an offset from the beginning of the file to the tree pointer table.
/// </summary> /// </summary>
public short rsh_trindex; public ushort rsh_trindex;
/// <summary> /// <summary>
/// Number of OBJECTs in the file. /// Number of OBJECTs in the file.
/// </summary> /// </summary>
public short rsh_nobs; public ushort rsh_nobs;
/// <summary> /// <summary>
/// Number of object trees in the file. /// Number of object trees in the file.
/// </summary> /// </summary>
public short rsh_ntree; public ushort rsh_ntree;
/// <summary> /// <summary>
/// Number of TEDINFOs in the file. /// Number of TEDINFOs in the file.
/// </summary> /// </summary>
public short rsh_nted; public ushort rsh_nted;
/// <summary> /// <summary>
/// Number of ICONBLKs in the file. /// Number of ICONBLKs in the file.
/// </summary> /// </summary>
public short rsh_nib; public ushort rsh_nib;
/// <summary> /// <summary>
/// Number of BITBLKs in the file. /// Number of BITBLKs in the file.
/// </summary> /// </summary>
public short rsh_nbb; public ushort rsh_nbb;
/// <summary> /// <summary>
/// Number of free strings in the file. /// Number of free strings in the file.
/// </summary> /// </summary>
public short rsh_nstring; public ushort rsh_nstring;
/// <summary> /// <summary>
/// Number of free images in the file. /// Number of free images in the file.
/// </summary> /// </summary>
public short rsh_nimages; public ushort rsh_nimages;
/// <summary> /// <summary>
/// Size of the resource file (in bytes). Note that this is the size of the old format resource file. If the newer /// Size of the resource file (in bytes). Note that this is the size of the old format resource file. If the newer
/// format file is being used then this value can be used as an offset to the extension array. /// format file is being used then this value can be used as an offset to the extension array.
/// </summary> /// </summary>
public short rsh_rssize; public ushort rsh_rssize;
} }
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
@@ -116,80 +116,80 @@ namespace libexeinfo
/// <summary> /// <summary>
/// Must be version 3 /// Must be version 3
/// </summary> /// </summary>
public short rsh_vrsn; public ushort rsh_vrsn;
/// <summary> /// <summary>
/// Not used /// Not used
/// </summary> /// </summary>
public short rsh_extvrsn; public ushort rsh_extvrsn;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the OBJECT structures. /// Contains an offset from the beginning of the file to the OBJECT structures.
/// </summary> /// </summary>
public int rsh_object; public uint rsh_object;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the TEDINFO structures. /// Contains an offset from the beginning of the file to the TEDINFO structures.
/// </summary> /// </summary>
public int rsh_tedinfo; public uint rsh_tedinfo;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the ICONBLK structures. /// Contains an offset from the beginning of the file to the ICONBLK structures.
/// </summary> /// </summary>
public int rsh_iconblk; public uint rsh_iconblk;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the BITBLK structures. /// Contains an offset from the beginning of the file to the BITBLK structures.
/// </summary> /// </summary>
public int rsh_bitblk; public uint rsh_bitblk;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the string pointer table. /// Contains an offset from the beginning of the file to the string pointer table.
/// </summary> /// </summary>
public int rsh_frstr; public uint rsh_frstr;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the string data. /// Contains an offset from the beginning of the file to the string data.
/// </summary> /// </summary>
public int rsh_string; public uint rsh_string;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the image data. /// Contains an offset from the beginning of the file to the image data.
/// </summary> /// </summary>
public int rsh_imdata; public uint rsh_imdata;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the image pointer table. /// Contains an offset from the beginning of the file to the image pointer table.
/// </summary> /// </summary>
public int rsh_frimg; public uint rsh_frimg;
/// <summary> /// <summary>
/// Contains an offset from the beginning of the file to the tree pointer table. /// Contains an offset from the beginning of the file to the tree pointer table.
/// </summary> /// </summary>
public int rsh_trindex; public uint rsh_trindex;
/// <summary> /// <summary>
/// Number of OBJECTs in the file. /// Number of OBJECTs in the file.
/// </summary> /// </summary>
public int rsh_nobs; public uint rsh_nobs;
/// <summary> /// <summary>
/// Number of object trees in the file. /// Number of object trees in the file.
/// </summary> /// </summary>
public int rsh_ntree; public uint rsh_ntree;
/// <summary> /// <summary>
/// Number of TEDINFOs in the file. /// Number of TEDINFOs in the file.
/// </summary> /// </summary>
public int rsh_nted; public uint rsh_nted;
/// <summary> /// <summary>
/// Number of ICONBLKs in the file. /// Number of ICONBLKs in the file.
/// </summary> /// </summary>
public int rsh_nib; public uint rsh_nib;
/// <summary> /// <summary>
/// Number of BITBLKs in the file. /// Number of BITBLKs in the file.
/// </summary> /// </summary>
public int rsh_nbb; public uint rsh_nbb;
/// <summary> /// <summary>
/// Number of free strings in the file. /// Number of free strings in the file.
/// </summary> /// </summary>
public int rsh_nstring; public uint rsh_nstring;
/// <summary> /// <summary>
/// Number of free images in the file. /// Number of free images in the file.
/// </summary> /// </summary>
public int rsh_nimages; public uint rsh_nimages;
/// <summary> /// <summary>
/// Size of the resource file (in bytes). Note that this is the size of the old format resource file. If the newer /// Size of the resource file (in bytes). Note that this is the size of the old format resource file. If the newer
/// format file is being used then this value can be used as an offset to the extension array. /// format file is being used then this value can be used as an offset to the extension array.
/// </summary> /// </summary>
public int rsh_rssize; public uint rsh_rssize;
} }
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
@@ -198,7 +198,7 @@ namespace libexeinfo
/// <summary> /// <summary>
/// Size of the file /// Size of the file
/// </summary> /// </summary>
public int filesize; public uint filesize;
/// <summary> /// <summary>
/// Slot for color icons containing an offset to <see cref="ColorIconBlock" /> table. The table is an array of /// Slot for color icons containing an offset to <see cref="ColorIconBlock" /> table. The table is an array of
/// <see cref="int" /> offsets in file with -1 meaning table end. /// <see cref="int" /> offsets in file with -1 meaning table end.
@@ -247,23 +247,23 @@ namespace libexeinfo
/// A long value containing object specific data. Depending on the object's type, can be a pointer to any combination /// A long value containing object specific data. Depending on the object's type, can be a pointer to any combination
/// of word and/or byte values that add up to 32 bits. /// of word and/or byte values that add up to 32 bits.
/// </summary> /// </summary>
public int ob_spec; public uint ob_spec;
/// <summary> /// <summary>
/// A word containing the X-coordinate of the object relative to its parent or (for the root object) the screen /// A word containing the X-coordinate of the object relative to its parent or (for the root object) the screen
/// </summary> /// </summary>
public short ob_x; public ushort ob_x;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of the object relative to its parent or (for the root object) the screen /// A word containing the Y-coordinate of the object relative to its parent or (for the root object) the screen
/// </summary> /// </summary>
public short ob_y; public ushort ob_y;
/// <summary> /// <summary>
/// A word containing the width of the object in pixels /// A word containing the width of the object in pixels
/// </summary> /// </summary>
public short ob_width; public ushort ob_width;
/// <summary> /// <summary>
/// A word containing the height of the object in pixels /// A word containing the height of the object in pixels
/// </summary> /// </summary>
public short ob_height; public ushort ob_height;
} }
/// <summary> /// <summary>
@@ -277,9 +277,9 @@ namespace libexeinfo
public BitmapBlock BitBlock; public BitmapBlock BitBlock;
public TreeObjectNode child; public TreeObjectNode child;
public ColorIcon ColorIcon; public ColorIcon ColorIcon;
public int data; public uint data;
public ObjectFlags flags; public ObjectFlags flags;
public short height; public ushort height;
public Icon IconBlock; public Icon IconBlock;
public TreeObjectNode sibling; public TreeObjectNode sibling;
public ObjectStates state; public ObjectStates state;
@@ -287,9 +287,9 @@ namespace libexeinfo
public TextBlock TedInfo; public TextBlock TedInfo;
public ObjectTypes type; public ObjectTypes type;
public short width; public ushort width;
public short x; public ushort x;
public short y; public ushort y;
} }
public class TextBlock public class TextBlock
@@ -302,7 +302,7 @@ namespace libexeinfo
public string Template; public string Template;
public string Text; public string Text;
public ObjectColors TextColor; public ObjectColors TextColor;
public short Thickness; public ushort Thickness;
public bool Transparency; public bool Transparency;
public string Validation; public string Validation;
} }
@@ -311,37 +311,37 @@ namespace libexeinfo
{ {
public ObjectColors Color; public ObjectColors Color;
public byte[] Data; public byte[] Data;
public int Height; public uint Height;
public int Width; public uint Width;
public short X; public ushort X;
public short Y; public ushort Y;
} }
public class Icon public class Icon
{ {
public ObjectColors BackgroundColor; public ObjectColors BackgroundColor;
public char Character; public char Character;
public short CharX; public ushort CharX;
public short CharY; public ushort CharY;
public byte[] Data; public byte[] Data;
public ObjectColors ForegroundColor; public ObjectColors ForegroundColor;
public int Height; public uint Height;
public byte[] Mask; public byte[] Mask;
public string Text; public string Text;
public short TextHeight; public ushort TextHeight;
public short TextWidth; public ushort TextWidth;
public short TextX; public ushort TextX;
public short TextY; public ushort TextY;
public int Width; public uint Width;
public short X; public ushort X;
public short Y; public ushort Y;
} }
public class ColorIconPlane public class ColorIconPlane
{ {
public byte[] Data; public byte[] Data;
public byte[] Mask; public byte[] Mask;
public short Planes; public ushort Planes;
public byte[] SelectedData; public byte[] SelectedData;
public byte[] SelectedMask; public byte[] SelectedMask;
} }
@@ -362,48 +362,48 @@ namespace libexeinfo
/// <summary> /// <summary>
/// A pointer to the actual text. If the first character is '@', the field is blank. /// A pointer to the actual text. If the first character is '@', the field is blank.
/// </summary> /// </summary>
public int te_ptext; public uint te_ptext;
/// <summary> /// <summary>
/// A pointer to a string template for any data entry. The editable portion is represented by underscores. /// A pointer to a string template for any data entry. The editable portion is represented by underscores.
/// </summary> /// </summary>
public int te_ptmplt; public uint te_ptmplt;
/// <summary> /// <summary>
/// A pointer to a text string contianing characters tht validate any entered text /// A pointer to a text string contianing characters tht validate any entered text
/// </summary> /// </summary>
public int te_pvalid; public uint te_pvalid;
/// <summary> /// <summary>
/// A word identifying the font used to draw the text. 3 for system font, 5 for small font. /// A word identifying the font used to draw the text. 3 for system font, 5 for small font.
/// </summary> /// </summary>
public short te_font; public ushort te_font;
/// <summary> /// <summary>
/// On SpeedGDOS it specifies the id for the font to use /// On SpeedGDOS it specifies the id for the font to use
/// </summary> /// </summary>
public short te_fontid; public ushort te_fontid;
/// <summary> /// <summary>
/// A word identifying the type of text justification desired. 0 = left, 1 = right, 2 = center /// A word identifying the type of text justification desired. 0 = left, 1 = right, 2 = center
/// </summary> /// </summary>
public short te_just; public ushort te_just;
/// <summary> /// <summary>
/// A word identifying the color and pattern of box-type objects /// A word identifying the color and pattern of box-type objects
/// </summary> /// </summary>
public short te_color; public ushort te_color;
/// <summary> /// <summary>
/// On SpeedGDOS it specifies the size for the font to use /// On SpeedGDOS it specifies the size for the font to use
/// </summary> /// </summary>
public short te_fontsize; public ushort te_fontsize;
/// <summary> /// <summary>
/// A word containing the thickness in pixels of the border of the text box. 0 for none, positive for inside, negative /// A word containing the thickness in pixels of the border of the text box. 0 for none, positive for inside, negative
/// for outside /// for outside
/// </summary> /// </summary>
public short te_thickness; public ushort te_thickness;
/// <summary> /// <summary>
/// A word containing the length of the string pointed by <see cref="te_ptext" />. /// A word containing the length of the string pointed by <see cref="te_ptext" />.
/// </summary> /// </summary>
public short te_txtlen; public ushort te_txtlen;
/// <summary> /// <summary>
/// A word containing the length of the string pointed by <see cref="te_ptmplt" />. /// A word containing the length of the string pointed by <see cref="te_ptmplt" />.
/// </summary> /// </summary>
public short te_tmplen; public ushort te_tmplen;
} }
/// <summary> /// <summary>
@@ -416,64 +416,64 @@ namespace libexeinfo
/// <summary> /// <summary>
/// A pointer to an array of words representing the mask bit image of the icon /// A pointer to an array of words representing the mask bit image of the icon
/// </summary> /// </summary>
public int ib_pmask; public uint ib_pmask;
/// <summary> /// <summary>
/// A pointer to an array of words representing the data bit image of the icon /// A pointer to an array of words representing the data bit image of the icon
/// </summary> /// </summary>
public int ib_pdata; public uint ib_pdata;
/// <summary> /// <summary>
/// A pointer to the icon's text /// A pointer to the icon's text
/// </summary> /// </summary>
public int ib_ptext; public uint ib_ptext;
/// <summary> /// <summary>
/// A word containing a character to be drawn in the icon. The high byte contains the foreground color in the high /// A word containing a character to be drawn in the icon. The high byte contains the foreground color in the high
/// nibble and the background color in the low nibble. /// nibble and the background color in the low nibble.
/// </summary> /// </summary>
public short ib_char; public ushort ib_char;
/// <summary> /// <summary>
/// A word containing the X-coordinate of <see cref="ib_char" /> /// A word containing the X-coordinate of <see cref="ib_char" />
/// </summary> /// </summary>
public short ib_xchar; public ushort ib_xchar;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of <see cref="ib_char" /> /// A word containing the Y-coordinate of <see cref="ib_char" />
/// </summary> /// </summary>
public short ib_ychar; public ushort ib_ychar;
/// <summary> /// <summary>
/// A word containing the X-coordinate of the icon /// A word containing the X-coordinate of the icon
/// </summary> /// </summary>
public short ib_xicon; public ushort ib_xicon;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of the icon /// A word containing the Y-coordinate of the icon
/// </summary> /// </summary>
public short ib_yicon; public ushort ib_yicon;
/// <summary> /// <summary>
/// A word containing the width of the icon in pixels. Must be divisible by 16. /// A word containing the width of the icon in pixels. Must be divisible by 16.
/// </summary> /// </summary>
public short ib_wicon; public ushort ib_wicon;
/// <summary> /// <summary>
/// A word containing the height of the icon in pixels /// A word containing the height of the icon in pixels
/// </summary> /// </summary>
public short ib_hicon; public ushort ib_hicon;
/// <summary> /// <summary>
/// A word containing the X-coordinate of the icon's text /// A word containing the X-coordinate of the icon's text
/// </summary> /// </summary>
public short ib_xtext; public ushort ib_xtext;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of the icon's text /// A word containing the Y-coordinate of the icon's text
/// </summary> /// </summary>
public short ib_ytext; public ushort ib_ytext;
/// <summary> /// <summary>
/// A word containing the width of a rectangle in which the icon's text will be centered /// A word containing the width of a rectangle in which the icon's text will be centered
/// </summary> /// </summary>
public short ib_wtext; public ushort ib_wtext;
/// <summary> /// <summary>
/// A word containing the height of the icon's text in pixels /// A word containing the height of the icon's text in pixels
/// </summary> /// </summary>
public short ib_htext; public ushort ib_htext;
/// <summary> /// <summary>
/// Zeros /// Zeros
/// </summary> /// </summary>
public short empty; public ushort empty;
} }
/// <summary> /// <summary>
@@ -485,31 +485,31 @@ namespace libexeinfo
/// <summary> /// <summary>
/// A pointer to an array of words contianing the bit image /// A pointer to an array of words contianing the bit image
/// </summary> /// </summary>
public int bi_pdata; public uint bi_pdata;
/// <summary> /// <summary>
/// A word containing the width of the <see cref="bi_pdata" /> array in bytes /// A word containing the width of the <see cref="bi_pdata" /> array in bytes
/// </summary> /// </summary>
public short bi_wb; public ushort bi_wb;
/// <summary> /// <summary>
/// A word containing the height of the bit block in scan lines (pixels) /// A word containing the height of the bit block in scan lines (pixels)
/// </summary> /// </summary>
public short bi_hl; public ushort bi_hl;
/// <summary> /// <summary>
/// A word containing the source X in bit form, relative to the <see cref="bi_pdata" /> array /// A word containing the source X in bit form, relative to the <see cref="bi_pdata" /> array
/// </summary> /// </summary>
public short bi_x; public ushort bi_x;
/// <summary> /// <summary>
/// A word containing the source Y in bit form, relative to the <see cref="bi_pdata" /> array /// A word containing the source Y in bit form, relative to the <see cref="bi_pdata" /> array
/// </summary> /// </summary>
public short bi_y; public ushort bi_y;
/// <summary> /// <summary>
/// A word containing the color GEM AES uses when displaying the bit image. /// A word containing the color GEM AES uses when displaying the bit image.
/// </summary> /// </summary>
public short bi_color; public ushort bi_color;
/// <summary> /// <summary>
/// Zeros /// Zeros
/// </summary> /// </summary>
public short empty; public ushort empty;
} }
/// <summary> /// <summary>
@@ -523,11 +523,11 @@ namespace libexeinfo
/// <summary> /// <summary>
/// A pointer to the routine for drawing and/or changing the object /// A pointer to the routine for drawing and/or changing the object
/// </summary> /// </summary>
public int ab_code; public uint ab_code;
/// <summary> /// <summary>
/// A pointer to a <see cref="ParameterBlock" /> /// A pointer to a <see cref="ParameterBlock" />
/// </summary> /// </summary>
public int ab_parm; public uint ab_parm;
} }
/// <summary> /// <summary>
@@ -539,67 +539,67 @@ namespace libexeinfo
/// <summary> /// <summary>
/// A pointer to the object tree that contains the application defined object /// A pointer to the object tree that contains the application defined object
/// </summary> /// </summary>
public int pb_tree; public uint pb_tree;
/// <summary> /// <summary>
/// A word containing the object index of the application defined object /// A word containing the object index of the application defined object
/// </summary> /// </summary>
public short pb_obj; public ushort pb_obj;
/// <summary> /// <summary>
/// A word containing the old state of an object to be changed /// A word containing the old state of an object to be changed
/// </summary> /// </summary>
public short pb_prevstate; public ushort pb_prevstate;
/// <summary> /// <summary>
/// A word containing the changed (new) state of an object /// A word containing the changed (new) state of an object
/// </summary> /// </summary>
public short pb_currstate; public ushort pb_currstate;
/// <summary> /// <summary>
/// A word containing the X-coordinate of a rectangle defining the location of the object on the physical screen /// A word containing the X-coordinate of a rectangle defining the location of the object on the physical screen
/// </summary> /// </summary>
public short pb_x; public ushort pb_x;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of a rectangle defining the location of the object on the physical screen /// A word containing the Y-coordinate of a rectangle defining the location of the object on the physical screen
/// </summary> /// </summary>
public short pb_y; public ushort pb_y;
/// <summary> /// <summary>
/// A word containing the width in pixels of a rectanble defining the size of the object on the physical screen /// A word containing the width in pixels of a rectanble defining the size of the object on the physical screen
/// </summary> /// </summary>
public short pb_w; public ushort pb_w;
/// <summary> /// <summary>
/// A word containing the height in pixels of a rectanble defining the size of the object on the physical screen /// A word containing the height in pixels of a rectanble defining the size of the object on the physical screen
/// </summary> /// </summary>
public short pb_h; public ushort pb_h;
/// <summary> /// <summary>
/// A word containing the X-coordinate of the current clip rectangle on the physical screen /// A word containing the X-coordinate of the current clip rectangle on the physical screen
/// </summary> /// </summary>
public short pb_xc; public ushort pb_xc;
/// <summary> /// <summary>
/// A word containing the Y-coordinate of the current clip rectangle on the physical screen /// A word containing the Y-coordinate of the current clip rectangle on the physical screen
/// </summary> /// </summary>
public short pb_yc; public ushort pb_yc;
/// <summary> /// <summary>
/// A word containing the width in pixels of the current clip rectnagle on the physical screen /// A word containing the width in pixels of the current clip rectnagle on the physical screen
/// </summary> /// </summary>
public short pb_wc; public ushort pb_wc;
/// <summary> /// <summary>
/// A word containing the heigth in pixels of the current clip rectnagle on the physical screen /// A word containing the heigth in pixels of the current clip rectnagle on the physical screen
/// </summary> /// </summary>
public short pb_hc; public ushort pb_hc;
/// <summary> /// <summary>
/// A long value, identical to <see cref="ApplicationBlock.ab_parm" />, that is passed to the application when it is /// A long value, identical to <see cref="ApplicationBlock.ab_parm" />, that is passed to the application when it is
/// time for /// time for
/// the application to draw or change the object. Low word. /// the application to draw or change the object. Low word.
/// </summary> /// </summary>
public short pb_parm_low; public ushort pb_parm_low;
/// <summary> /// <summary>
/// A long value, identical to <see cref="ApplicationBlock.ab_parm" />, that is passed to the application when it is /// A long value, identical to <see cref="ApplicationBlock.ab_parm" />, that is passed to the application when it is
/// time for /// time for
/// the application to draw or change the object. High word. /// the application to draw or change the object. High word.
/// </summary> /// </summary>
public short pb_parm_high; public ushort pb_parm_high;
/// <summary> /// <summary>
/// Zeros /// Zeros
/// </summary> /// </summary>
public short empty; public ushort empty;
} }
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
@@ -608,27 +608,27 @@ namespace libexeinfo
/// <summary> /// <summary>
/// Number of planes in the following data /// Number of planes in the following data
/// </summary> /// </summary>
public short num_planes; public ushort num_planes;
/// <summary> /// <summary>
/// Pointer to color bitmap in standard form /// Pointer to color bitmap in standard form
/// </summary> /// </summary>
public int col_data; public uint col_data;
/// <summary> /// <summary>
/// Pointer to single plane mask of <see cref="col_data" /> /// Pointer to single plane mask of <see cref="col_data" />
/// </summary> /// </summary>
public int col_mask; public uint col_mask;
/// <summary> /// <summary>
/// Pointer to color bitmap of selected icon /// Pointer to color bitmap of selected icon
/// </summary> /// </summary>
public int sel_data; public uint sel_data;
/// <summary> /// <summary>
/// Pointer to single plane mask of <see cref="sel_data" /> /// Pointer to single plane mask of <see cref="sel_data" />
/// </summary> /// </summary>
public int sel_mask; public uint sel_mask;
/// <summary> /// <summary>
/// Pointer to next icon /// Pointer to next icon
/// </summary> /// </summary>
public int next_res; public uint next_res;
} }
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
@@ -637,11 +637,11 @@ namespace libexeinfo
/// <summary> /// <summary>
/// Points to the start of an object tree that corresponds to the popup menu /// Points to the start of an object tree that corresponds to the popup menu
/// </summary> /// </summary>
public int tree; public uint tree;
/// <summary> /// <summary>
/// Current object of /// Current object of
/// </summary> /// </summary>
public short obnum; public ushort obnum;
} }
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
@@ -650,15 +650,15 @@ namespace libexeinfo
/// <summary> /// <summary>
/// Points to the string /// Points to the string
/// </summary> /// </summary>
public int str; public uint str;
/// <summary> /// <summary>
/// Index of the current character string /// Index of the current character string
/// </summary> /// </summary>
public short num; public ushort num;
/// <summary> /// <summary>
/// Maximum permitted number /// Maximum permitted number
/// </summary> /// </summary>
public short maxnum; public ushort maxnum;
} }
} }
} }