mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[ACD] Remove the driver stub
This commit is contained in:
parent
b82353cadd
commit
d43d898ea9
3 changed files with 0 additions and 63 deletions
|
@ -1,45 +0,0 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS RAS Automatic Connection Driver
|
||||
* FILE: acd/main.c
|
||||
* PURPOSE: Driver entry point
|
||||
* PROGRAMMERS: Dmitry Chapyshev(dmitry@reactos.org)
|
||||
* REVISIONS:
|
||||
* 25/05/2008 Created
|
||||
*/
|
||||
|
||||
#include <ndis.h>
|
||||
#include <tdi.h>
|
||||
#include <debug.h>
|
||||
|
||||
#include "acdapi.h"
|
||||
|
||||
NTSTATUS
|
||||
DriverEntry(PDRIVER_OBJECT pDriverObject,
|
||||
PUNICODE_STRING pRegistryPath)
|
||||
{
|
||||
UNICODE_STRING DeviceName;
|
||||
PDEVICE_OBJECT pDeviceObject;
|
||||
NTSTATUS Status;
|
||||
|
||||
RtlInitUnicodeString(&DeviceName, L"RasAcd");
|
||||
|
||||
Status = IoCreateDevice(pDriverObject,
|
||||
0,
|
||||
&DeviceName,
|
||||
FILE_DEVICE_RASACD,
|
||||
0,
|
||||
FALSE,
|
||||
&pDeviceObject);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("IoCreateDevice() failed (Status %lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS RAS Automatic Connection Driver
|
||||
* FILE: include/acdapi.h
|
||||
* PURPOSE: Header file
|
||||
* PROGRAMMERS: Dmitry Chapyshev(dmitry@reactos.org)
|
||||
* REVISIONS:
|
||||
* 25/05/2008 Created
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define FILE_DEVICE_RASACD 0xf1
|
|
@ -1,5 +0,0 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "NDIS Library"
|
||||
#define REACTOS_STR_INTERNAL_NAME "ndis"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "ndis.sys"
|
||||
#include <reactos/version.rc>
|
Loading…
Reference in a new issue