diff options
author | bunnei <bunneidev@gmail.com> | 2016-03-14 20:51:13 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-03-14 20:51:13 +0100 |
commit | 62b105b69523456c52b58a1992d465a0ea6682e5 (patch) | |
tree | 091058af51d0edc57650bd72b2dca54b0703fde2 /src/core/hle/service/ndm/ndm.h | |
parent | Merge pull request #1509 from lioncash/noncopy (diff) | |
parent | Reorganize the ndm service path for dummy implement function (diff) | |
download | yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.gz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.bz2 yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.lz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.xz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.zst yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.zip |
Diffstat (limited to 'src/core/hle/service/ndm/ndm.h')
-rw-r--r-- | src/core/hle/service/ndm/ndm.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/core/hle/service/ndm/ndm.h b/src/core/hle/service/ndm/ndm.h new file mode 100644 index 000000000..734730f8c --- /dev/null +++ b/src/core/hle/service/ndm/ndm.h @@ -0,0 +1,52 @@ +// Copyright 2016 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "common/common_types.h" + +namespace Service { + +class Interface; + +namespace NDM { + +/** + * SuspendDaemons + * Inputs: + * 0 : Command header (0x00020082) + * 1 : Daemon bit mask + * Outputs: + * 1 : Result, 0 on success, otherwise error code + */ +void SuspendDaemons(Service::Interface* self); + +/** + * ResumeDaemons + * Inputs: + * 0 : Command header (0x00020082) + * 1 : Daemon bit mask + * Outputs: + * 1 : Result, 0 on success, otherwise error code + */ +void ResumeDaemons(Service::Interface* self); + +/** + * OverrideDefaultDaemons + * Inputs: + * 0 : Command header (0x00020082) + * 1 : Daemon bit mask + * Outputs: + * 1 : Result, 0 on success, otherwise error code + */ +void OverrideDefaultDaemons(Service::Interface* self); + +/// Initialize NDM service +void Init(); + +/// Shutdown NDM service +void Shutdown(); + +}// namespace NDM +}// namespace Service |