mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
37 lines
675 B
C
37 lines
675 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel
|
|
* FILE: drivers/bus/pcmcia/pdo.c
|
|
* PURPOSE: PCMCIA Bus Driver
|
|
* PROGRAMMERS: Cameron Gutman (cameron.gutman@reactos.org)
|
|
*/
|
|
|
|
#include <pcmcia.h>
|
|
|
|
//#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
PcmciaPdoPlugPlay(PPCMCIA_PDO_EXTENSION PdoExt,
|
|
PIRP Irp)
|
|
{
|
|
UNREFERENCED_PARAMETER(PdoExt);
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
|
|
|
return STATUS_NOT_SUPPORTED;
|
|
}
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
PcmciaPdoSetPowerState(PPCMCIA_PDO_EXTENSION PdoExt)
|
|
{
|
|
UNREFERENCED_PARAMETER(PdoExt);
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|