Jump to content

DEVICESTRUCT: Difference between revisions

From EDM2
Created page with "Device structure. == Type == PSZ DevDescriptName; USHORT DevFlags; USHORT DevType; PADJUNCT pAdjunctList; == C Declaration Method == ty..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Device structure.  
Device structure.


== Type ==
== Type ==
Line 6: Line 6:
   USHORT      DevType;
   USHORT      DevType;
   PADJUNCT    pAdjunctList;
   PADJUNCT    pAdjunctList;
 
 
== C Declaration Method ==
== C Declaration Method ==
  typedef struct
  typedef struct

Latest revision as of 09:31, 5 April 2025

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 ;