Jump to content

LDEVSTRUCT

From EDM2
Revision as of 16:56, 17 August 2017 by Martini (talk | contribs) (Created page with "Logical device driver structure. == Type == PSZ LDevDescriptName; USHORT LDevFlags; USHORT LDevClass; HDEVICE LDevHDevice; PADJUNCT p...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Logical device driver structure.

Type

 PSZ          LDevDescriptName;
 USHORT       LDevFlags;
 USHORT       LDevClass;
 HDEVICE      LDevHDevice;
 PADJUNCT     pAdjunctList;

C Declaration Method

typedef struct

Fields

Remarks

Example Code

typedef struct _LDEVSTRUCT {
  PSZ          LDevDescriptName;
  USHORT       LDevFlags;
  USHORT       LDevClass;
  HDEVICE      LDevHDevice;
  PADJUNCT     pAdjunctList;
} LDEVSTRUCT;

typedef   LDEVSTRUCT   * PLDEVSTRUCT ;