Jump to content

DEVICESTRUCT

From EDM2
Revision as of 16:49, 17 August 2017 by Martini (talk | contribs) (Created page with "Device structure. == Type == PSZ DevDescriptName; USHORT DevFlags; USHORT DevType; PADJUNCT pAdjunctList; == C Declaration Method == ty...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Device structure.

Type

 PSZ          DevDescriptName;
 USHORT       DevFlags;
 USHORT       DevType;
 PADJUNCT     pAdjunctList;
  

C Declaration Method

typedef struct

Fields

Remarks

Example Code

typedef struct _DEVICESTRUCT {
  PSZ          DevDescriptName;
  USHORT       DevFlags;
  USHORT       DevType;
  PADJUNCT     pAdjunctList;
} DEVICESTRUCT;

typedef   DEVICESTRUCT   * PDEVICESTRUCT ;