Jump to content

DRIVERSTRUCT

From EDM2
Revision as of 16:52, 17 August 2017 by Martini (talk | contribs) (Created page with "Driver structure. == Type == PSZ DrvrName; PSZ DrvrDescript; PSZ VendorName; UCHAR MajorVer; UCHAR MinorVer; DATEST...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Driver structure.

Type

 PSZ           DrvrName;
 PSZ           DrvrDescript;
 PSZ           VendorName;
 UCHAR         MajorVer;
 UCHAR         MinorVer;
 DATESTAMP     Date;
 USHORT        DrvrFlags;
 USHORT        DrvrType;
 USHORT        DrvrSubType;
 PFNRMCB       DrvrCallback;
  

C Declaration Method

typedef struct

Fields

Remarks

Example Code

typedef struct _DRIVERSTRUCT {
  PSZ           DrvrName;
  PSZ           DrvrDescript;
  PSZ           VendorName;
  UCHAR         MajorVer;
  UCHAR         MinorVer;
  DATESTAMP     Date;
  USHORT        DrvrFlags;
  USHORT        DrvrType;
  USHORT        DrvrSubType;
  PFNRMCB       DrvrCallback;
} DRIVERSTRUCT;

typedef   DRIVERSTRUCT   * PDRIVERSTRUCT ;