mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
35 lines
590 B
C
35 lines
590 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)
|
||
|
{
|
||
|
UNIMPLEMENTED
|
||
|
|
||
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||
|
|
||
|
return STATUS_NOT_SUPPORTED;
|
||
|
}
|
||
|
|
||
|
NTSTATUS
|
||
|
NTAPI
|
||
|
PcmciaPdoSetPowerState(PPCMCIA_PDO_EXTENSION PdoExt)
|
||
|
{
|
||
|
UNIMPLEMENTED
|
||
|
|
||
|
return STATUS_SUCCESS;
|
||
|
}
|
||
|
|