mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
1f377076d7
Not all files are included, but these are necessary to compile cdrom driver. So far it can only be statically linked with drivers, a proper implementation requires wdfldr helper driver
15 lines
345 B
C
15 lines
345 B
C
/*
|
|
* PROJECT: Kernel Mode Device Framework
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Missing headers (usbspec.h)
|
|
* COPYRIGHT: 2020 Victor Perevertkin (victor.perevertkin@reactos.org)
|
|
*/
|
|
|
|
#ifndef __USBSPEC_H__
|
|
#define __USBSPEC_H__
|
|
|
|
#include <usb100.h>
|
|
#include <usb200.h>
|
|
|
|
#endif
|