reactos/sdk/lib/drivers/wdf/umdf/fxlib/inc/private/umdfstub.h
Victor Perevertkin 8a978a179f
[WDF] Add Windows Driver Framework files
Takern from Microsoft GitHub repo:
d9c6040fe9

Licensed under MIT
2020-11-03 00:06:26 +03:00

63 lines
804 B
C

/*++
Copyright (c) Microsoft Corporation
ModuleName:
UMDFStubs.h
Abstract:
Contains declarations for functions implemented by WdfStubUm.lib and
WdfVersionUm.lib
These are called by UMDF framework (in WUDF.cpp)
Author:
Revision History:
--*/
//
// Functions implemented by version\version.cpp
//
extern "C"
NTSTATUS
LibraryDriverEntry(
__in PUNICODE_STRING RegistryPath
);
extern "C"
VOID
LibraryUnload(
);
//
// Functions implemented by stub\stub.cpp
//
extern "C"
NTSTATUS
FxDriverEntry(
__in PWDF_DRIVER_GLOBALS * WdfDriverGlobals
);
extern "C"
VOID
DriverUnload(
__in PWDF_DRIVER_GLOBALS WdfDriverGlobals
);
//
// Functions implemented by version\FxLibraryCommon.cpp
//
VOID
FxIFRStop(
__in PFX_DRIVER_GLOBALS FxDriverGlobals
);