function.h
上传用户:lyfy_2008
上传日期:2014-07-13
资源大小:3016k
文件大小:0k
源码类别:

USB编程

开发平台:

Visual C++

  1. // function.h
  2. //
  3. // This file controls which driver functions are enabled.
  4. #ifndef __function_h__
  5. #define __function_h__
  6. #define DRIVER_FUNCTION_CREATE
  7. #define DRIVER_FUNCTION_CLOSE
  8. #define DRIVER_FUNCTION_DEVICE_CONTROL
  9. #define DRIVER_FUNCTION_READ
  10. #define DRIVER_FUNCTION_WRITE
  11. #define DRIVER_FUNCTION_ADD_DEVICE
  12. #define DRIVER_FUNCTION_PNP
  13. #define DRIVER_FUNCTION_POWER
  14. #define DRIVER_FUNCTION_SYSTEM_CONTROL
  15. #define DRIVER_FUNCTION_UNLOAD
  16. #define DRIVER_FUNCTION_CLEANUP
  17. #endif