mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Display driver name when loading it.
svn path=/trunk/; revision=2618
This commit is contained in:
parent
7115aab674
commit
bfe7eb862e
1 changed files with 14 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: loader.c,v 1.97 2002/02/09 19:20:44 chorns Exp $
|
/* $Id: loader.c,v 1.98 2002/02/10 13:35:37 chorns Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -347,11 +347,23 @@ LdrpOpenModuleDirectory(PHANDLE Handle)
|
||||||
static VOID LdrLoadAutoConfigDriver (LPWSTR RelativeDriverName)
|
static VOID LdrLoadAutoConfigDriver (LPWSTR RelativeDriverName)
|
||||||
{
|
{
|
||||||
WCHAR TmpFileName [MAX_PATH];
|
WCHAR TmpFileName [MAX_PATH];
|
||||||
|
CHAR Buffer [256];
|
||||||
UNICODE_STRING DriverName;
|
UNICODE_STRING DriverName;
|
||||||
PDEVICE_NODE DeviceNode;
|
PDEVICE_NODE DeviceNode;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
ULONG x, y, cx, cy;
|
||||||
|
|
||||||
CPRINT("Loading %S\n",RelativeDriverName);
|
HalQueryDisplayParameters(&x, &y, &cx, &cy);
|
||||||
|
RtlFillMemory(Buffer, x, ' ');
|
||||||
|
Buffer[x] = '\0';
|
||||||
|
HalSetDisplayParameters(0, y-1);
|
||||||
|
HalDisplayString(Buffer);
|
||||||
|
|
||||||
|
sprintf(Buffer, "Loading %S...\n",RelativeDriverName);
|
||||||
|
HalSetDisplayParameters(0, y-1);
|
||||||
|
HalDisplayString(Buffer);
|
||||||
|
HalSetDisplayParameters(cx, cy);
|
||||||
|
//CPRINT("Loading %S\n",RelativeDriverName);
|
||||||
|
|
||||||
wcscpy(TmpFileName, L"\\SystemRoot\\system32\\drivers\\");
|
wcscpy(TmpFileName, L"\\SystemRoot\\system32\\drivers\\");
|
||||||
wcscat(TmpFileName, RelativeDriverName);
|
wcscat(TmpFileName, RelativeDriverName);
|
||||||
|
|
Loading…
Reference in a new issue