?? pnp.h
字號(hào):
/*************************************************************************
/*
/* Copyright 2004/02/08
/* Author : Meng-Jer Tsai(Taiwan R.O.C)
/* Email : mjtsai87@ms31.hinet.net
/* Declaration and Agreement Statements:
/* [1]This Program is free for redistribution with
/* or without any modify of the source code containing
/* in this source file on conditions that the Declaration
/* and Agreement Statements is included.
/* [2]If any damanage done to your computer system due to the
/* execution of the source code in this file, no responsibility
/* will be taken by the Author.
/* [3]Any commercial binary executable product developed based on
/* this source code must have the Copyright and all items in
/* this Declaration and Agreement Statements in its User License
/* Agreement, or will be regarded as inappropriate occupy of
/* software creativity.
/*
/*************************************************************************/
/*************************************************************************
/*
/* This file is defined to be the common include header file for
/* all driver's reference. It will take hand of all PnP-Related handling.
/*
/*************************************************************************/
#ifndef PNP_H
#define PNP_H
NTSTATUS
PsdoDispatchPnP(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
);
NTSTATUS
StartDevice(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
);
NTSTATUS
StopDevice(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
);
NTSTATUS
RemoveDevice(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
);
NTSTATUS
QueryCapability(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
);
NTSTATUS
CompletionQueryCapability(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PVOID Context
);
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -