From e373027a73e84c04b28bbfb4fc837b4133b17d4f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 31 Jul 2018 06:33:38 -0400 Subject: service: Add the pcie service Adds the basic skeleton of the pcie service based off information on Switch Brew. --- src/core/hle/service/pcie/pcie.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/core/hle/service/pcie/pcie.h (limited to 'src/core/hle/service/pcie/pcie.h') diff --git a/src/core/hle/service/pcie/pcie.h b/src/core/hle/service/pcie/pcie.h new file mode 100644 index 000000000..59c22ca45 --- /dev/null +++ b/src/core/hle/service/pcie/pcie.h @@ -0,0 +1,15 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +namespace Service::SM { +class ServiceManager; +} + +namespace Service::PCIe { + +void InstallInterfaces(SM::ServiceManager& sm); + +} // namespace Service::PCIe -- cgit v1.2.3