mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
27 lines
518 B
C
27 lines
518 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel
|
|
* FILE: drivers/bus/pcmcia/fdo.c
|
|
* PURPOSE: PCMCIA Bus Driver
|
|
* PROGRAMMERS: Cameron Gutman (cameron.gutman@reactos.org)
|
|
*/
|
|
|
|
#include <pcmcia.h>
|
|
|
|
//#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
PcmciaFdoPlugPlay(PPCMCIA_FDO_EXTENSION FdoExt,
|
|
PIRP Irp)
|
|
{
|
|
UNREFERENCED_PARAMETER(FdoExt);
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
|
|
|
return STATUS_NOT_SUPPORTED;
|
|
}
|