[STORPORT][DDK] Add the StorPortExtendedFunction stub

- Add the StorPortExtendedFunction stub to the storport driver.
- Add the declaration of StorPortExtendedFunction to the ddk.

CORE-12695
This commit is contained in:
Eric Kohl 2018-03-03 14:19:33 +01:00
parent 0c957755ed
commit ca22dc9bb5
3 changed files with 353 additions and 1 deletions

View file

@ -518,6 +518,23 @@ StorPortDeviceReady(
}
/*
* @unimplemented
*/
STORPORT_API
ULONG
StorPortExtendedFunction(
_In_ STORPORT_FUNCTION_CODE FunctionCode,
_In_ PVOID HwDeviceExtension,
...)
{
DPRINT1("StorPortExtendedFunction(%d %p ...)\n",
FunctionCode, HwDeviceExtension);
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
}
/*
* @implemented
*/

View file

@ -9,7 +9,7 @@
@ cdecl StorPortDebugPrint()
@ stdcall StorPortDeviceBusy(ptr long long long long)
@ stdcall StorPortDeviceReady(ptr long long long)
# StorPortExtendedFunction
@ cdecl StorPortExtendedFunction()
@ stdcall StorPortFreeDeviceBase(ptr ptr)
@ stdcall StorPortFreeRegistryBuffer(ptr ptr)
@ stdcall StorPortGetBusData(ptr long long long ptr long)