mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-23 04:27:57 -05:00
hle: Initial implementation of NX service framework and IPC.
This commit is contained in:
22
src/core/hle/service/sm/controller.h
Normal file
22
src/core/hle/service/sm/controller.h
Normal file
@ -0,0 +1,22 @@
|
||||
// Copyright 2017 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace SM {
|
||||
|
||||
class Controller final : public ServiceFramework<Controller> {
|
||||
public:
|
||||
explicit Controller();
|
||||
~Controller();
|
||||
|
||||
private:
|
||||
void QueryPointerBufferSize(Kernel::HLERequestContext& ctx);
|
||||
};
|
||||
|
||||
} // namespace SM
|
||||
} // namespace Service
|
Reference in New Issue
Block a user