mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 19:53:56 +00:00
Add new pseudo-handles
This commit is contained in:
@@ -114,6 +114,12 @@ namespace syscalls
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
if (name == u"\\SECURITY\\LSA_AUTHENTICATION_INITIALIZED")
|
||||
{
|
||||
event_handle.write(LSA_AUTHENTICATION_INITIALIZED.bits);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
if (name == u"DBWIN_DATA_READY")
|
||||
{
|
||||
event_handle.write(DBWIN_DATA_READY.bits);
|
||||
|
||||
@@ -1022,6 +1022,12 @@ namespace syscalls
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
if (object_name == u"\\RPC Control")
|
||||
{
|
||||
directory_handle.write(RPC_CONTROL_DIRECTORY);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
return STATUS_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user