DRIVERINFOSTRUCT

3.1

typedef struct tagDRIVERINFOSTRUCT {     /* drvinfst */
    UINT      length;
    HDRVR     hDriver;
    HINSTANCE hModule;
    char      szAliasName[128];
} DRIVERINFOSTRUCT;

The DRIVERINFOSTRUCT structure contains basic information about an installable device driver.

Members

length

Specifies the size of the DRIVERINFOSTRUCT structure.

hDriver

Identifies an instance of the installable driver.

hModule

Identifies an installable driver module.

szAliasName

Points to a null-terminated string that specifies the driver name or an alias under which the driver was loaded.

See Also

GetDriverInfo