mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Changed from Nt to Zw functions in VGAResetDevice.
svn path=/trunk/; revision=2629
This commit is contained in:
parent
c9d3381474
commit
d1cfd4ffdb
1 changed files with 4 additions and 4 deletions
|
@ -116,12 +116,12 @@ VOID VGAResetDevice(OUT PSTATUS_BLOCK StatusBlock)
|
|||
vps = VideoPortInt10(NULL, &vxba);
|
||||
RtlInitUnicodeString( &Name, L"\\TextConsoleRefreshEvent" );
|
||||
InitializeObjectAttributes( &Attr, &Name, 0, 0, 0 );
|
||||
Status = NtOpenEvent( &Event, STANDARD_RIGHTS_ALL, &Attr );
|
||||
Status = ZwOpenEvent( &Event, STANDARD_RIGHTS_ALL, &Attr );
|
||||
if( !NT_SUCCESS( Status ) )
|
||||
DbgPrint( "VGA: Failed to open refresh event\n" );
|
||||
else {
|
||||
NtSetEvent( Event, &ThreadRelease );
|
||||
NtClose( Event );
|
||||
ZwSetEvent( Event, &ThreadRelease );
|
||||
ZwClose( Event );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue