Jump to content

PALINFO: Difference between revisions

From EDM2
Created page with "Class-specific palette information data. == Type == struct == C Declaration Method== typedef struct == Example Code== <PRE> typedef struct _PALINFO { ULONG xCellCount; Number of columns of palinfos.: ULONG yCellCount; Number of rows of palinfos.: ULONG xCursor; Cursor location (read only).: ULONG yCursor; Cursor location (read only).: ULONG xCellWidth; Width of each palinfo.: ULONG yCellH..."
 
(No difference)

Latest revision as of 03:03, 3 May 2025

Class-specific palette information data.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _PALINFO {
  ULONG     xCellCount;   /*  Number of columns of palinfos. */
  ULONG     yCellCount;   /*  Number of rows of palinfos. */
  ULONG     xCursor;      /*  Cursor location (read only). */
  ULONG     yCursor;      /*  Cursor location (read only). */
  ULONG     xCellWidth;   /*  Width of each palinfo. */
  ULONG     yCellHeight;  /*  Height of each palinfo. */
  ULONG     xGap;         /*  X separation of palinfos. */
  ULONG     yGap;         /*  Y separation of palinfos. */
} PALINFO;

typedef   PALINFO   * PPALINFO ;