Jump to content

DRIVDATA: Difference between revisions

From EDM2
Created page with "Driver-data structure. ==Type== typedef struct _DRIVDATA { LONG cb; Length.: LONG lVersion; Version.: CHAR szDeviceName..."
 
(No difference)

Latest revision as of 16:09, 27 December 2019

Driver-data structure.

Type

typedef struct _DRIVDATA {
 LONG     cb;                /*  Length. */
 LONG     lVersion;          /*  Version. */
 CHAR     szDeviceName[32];  /*  Device name. */
 CHAR     abGeneralData[1];  /*  General data. */
} DRIVDATA;

C Declaration Method

typedef DRIVDATA *PDRIVDATA;