[ACD] Remove the driver stub

This commit is contained in:
Victor Perevertkin 2023-01-30 21:54:36 +03:00
parent b82353cadd
commit d43d898ea9
3 changed files with 0 additions and 63 deletions

View file

@ -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 */

View file

@ -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

View file

@ -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>