mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:03:10 +00:00
[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:
parent
0c957755ed
commit
ca22dc9bb5
3 changed files with 353 additions and 1 deletions
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue