Jump to content

SLDCDATA: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Created page with " typedef struct _SLDCDATA { ULONG cb; // length of control data in bytes USHORT usScale1Increments;// number of divisions on scale 1 USHORT ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
  typedef struct _SLDCDATA {
  typedef struct _SLDCDATA {
   ULONG      cb;               // length of control data in bytes
   ULONG      cb;
   USHORT      usScale1Increments;// number of divisions on scale 1
   USHORT      usScale1Increments;
   USHORT      usScale1Spacing;   // space in pixels between increments
   USHORT      usScale1Spacing;
   USHORT      usScale2Increments;// number of divisions on scale 2
   USHORT      usScale2Increments;
   USHORT      usScale2Spacing;   // space in pixels between increments
   USHORT      usScale2Spacing;
  } SLDCDATA, *PSLDCDATA;
  } SLDCDATA, *PSLDCDATA;
;cb (LONG):Length of control data in bytes
;usScale1Increments (USHORT):Number of divisions on scale 1
;usScale1Spacing (USHORT):Space in pixels between increments
;usScale2Increments (USHORT):Number of divisions on scale 2
;usScale2Spacing (USHORT):Space in pixels between increments
[[Category:PM Data type]]
[[Category:PM Data type]]

Latest revision as of 13:14, 3 April 2025

typedef struct _SLDCDATA {
  ULONG       cb;
  USHORT      usScale1Increments;
  USHORT      usScale1Spacing;
  USHORT      usScale2Increments;
  USHORT      usScale2Spacing;
} SLDCDATA, *PSLDCDATA;
cb (LONG)
Length of control data in bytes
usScale1Increments (USHORT)
Number of divisions on scale 1
usScale1Spacing (USHORT)
Space in pixels between increments
usScale2Increments (USHORT)
Number of divisions on scale 2
usScale2Spacing (USHORT)
Space in pixels between increments