mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-24 06:01:02 +00:00
Added stubs for NtCreateNamedPipeFile NtReleaseWorkerFactoryWorker
This commit is contained in:
21
src/windows-emulator/devices/named_pipe.hpp
Normal file
21
src/windows-emulator/devices/named_pipe.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
#include "../io_device.hpp"
|
||||
|
||||
class named_pipe : public io_device_container {
|
||||
public:
|
||||
std::u16string name;
|
||||
ULONG pipe_type;
|
||||
ULONG read_mode;
|
||||
ULONG completion_mode;
|
||||
ULONG max_instances;
|
||||
ULONG inbound_quota;
|
||||
ULONG outbound_quota;
|
||||
LARGE_INTEGER default_timeout;
|
||||
|
||||
void create(windows_emulator&, const io_device_creation_data&) override {}
|
||||
void work(windows_emulator&) override {}
|
||||
NTSTATUS io_control(windows_emulator&, const io_device_context&) override { return STATUS_NOT_SUPPORTED; }
|
||||
|
||||
void serialize_object(utils::buffer_serializer&) const override {}
|
||||
void deserialize_object(utils::buffer_deserializer&) override {}
|
||||
};
|
||||
Reference in New Issue
Block a user