reactos/sdk/lib/drivers/wdf/kmdf/inc/private/fxdynamicswrapper.h
Victor Perevertkin 1f377076d7
[WDF] Fix KMDF so it can compile with ReactOS SDK
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
2020-11-03 00:06:27 +03:00

17 lines
356 B
C

//
// Copyright (C) Microsoft. All rights reserved.
//
//
// Since #include'ing FxDymamics.h requires a bunch of headers before it, we
// do this in one place because multiple spots in the code include this header.
//
extern "C" {
#include <usbdrivr.h>
#include <wdfusb.h>
#include <wdfminiport.h>
#include "fxdynamics.h"
#include "vffxdynamics.h"
}