SLDCDATA: Difference between revisions
Appearance
Created page with " typedef struct _SLDCDATA { ULONG cb; // length of control data in bytes USHORT usScale1Increments;// number of divisions on scale 1 USHORT ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
typedef struct _SLDCDATA { | typedef struct _SLDCDATA { | ||
ULONG cb; | ULONG cb; | ||
USHORT usScale1Increments; | USHORT usScale1Increments; | ||
USHORT usScale1Spacing; | USHORT usScale1Spacing; | ||
USHORT usScale2Increments; | USHORT usScale2Increments; | ||
USHORT usScale2Spacing; | 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