From: Thomas Bluemel Date: Thu, 27 Oct 2005 20:04:17 +0000 (+0000) Subject: no need to create a symbolic link in \?? X-Git-Tag: backups/ros-branch-0_2_9@19949~1081 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=0448c9617fb70e9c4d8683e3cc9645fd222652d1;hp=d0cd0df7fe585c2b679a1873aafaf85c3a759630 no need to create a symbolic link in \?? svn path=/trunk/; revision=18799 --- diff --git a/reactos/drivers/dd/beep/beep.c b/reactos/drivers/dd/beep/beep.c index a3b39a3fa98..939228da773 100644 --- a/reactos/drivers/dd/beep/beep.c +++ b/reactos/drivers/dd/beep/beep.c @@ -243,7 +243,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PDEVICE_EXTENSION DeviceExtension; PDEVICE_OBJECT DeviceObject; UNICODE_STRING DeviceName = RTL_CONSTANT_STRING(L"\\Device\\Beep"); - UNICODE_STRING SymlinkName = RTL_CONSTANT_STRING(L"\\??\\Beep"); NTSTATUS Status; DPRINT("Beep Device Driver 0.0.3\n"); @@ -277,10 +276,6 @@ DriverEntry(PDRIVER_OBJECT DriverObject, SynchronizationEvent, FALSE); - /* Create the dos device link */ - IoCreateSymbolicLink(&SymlinkName, - &DeviceName); - return(STATUS_SUCCESS); }