mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
26 lines
475 B
C
26 lines
475 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)
|
||
|
{
|
||
|
UNIMPLEMENTED
|
||
|
|
||
|
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||
|
|
||
|
return STATUS_NOT_SUPPORTED;
|
||
|
}
|
||
|
|