mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
5eb25b5c24
svn path=/branches/audio-bringup/; revision=49478
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;
|
|
}
|
|
|