Jump to content

LDEVSTRUCT: Difference between revisions

From EDM2
Created page with "Logical device driver structure. == Type == PSZ LDevDescriptName; USHORT LDevFlags; USHORT LDevClass; HDEVICE LDevHDevice; PADJUNCT p..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Logical device driver structure.
Logical device driver structure


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


== C Declaration Method ==
== C Declaration Method ==
Line 12: Line 12:


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _LDEVSTRUCT {
  PSZ          LDevDescriptName;
  USHORT      LDevFlags;
  USHORT      LDevClass;
  HDEVICE      LDevHDevice;
  PADJUNCT    pAdjunctList;
} LDEVSTRUCT;
typedef  LDEVSTRUCT  * PLDEVSTRUCT ;
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 11:09, 18 August 2017

Logical device driver structure

Type

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

C Declaration Method

typedef struct

Fields