mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
25 lines
475 B
C
25 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;
|
|
}
|
|
|