mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2025-12-06 03:31:59 +01:00
31 lines
577 B
C
31 lines
577 B
C
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, All Rights Reserved
|
|
|
|
Module Name:
|
|
|
|
Driver.h
|
|
|
|
Abstract:
|
|
|
|
This module contains the type definitions for the VirtualSerial sample's
|
|
driver callback class.
|
|
|
|
Environment:
|
|
|
|
Windows Driver Framework
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// This class handles driver events for the VirtualSerial sample. In particular
|
|
// it supports the OnDeviceAdd event, which occurs when the driver is called
|
|
// to setup per-device handlers for a new device stack.
|
|
//
|
|
|
|
DRIVER_INITIALIZE DriverEntry;
|
|
|
|
EVT_WDF_DRIVER_DEVICE_ADD EvtDeviceAdd;
|