summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ir/ir.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-02-27 20:25:50 +0100
committerGitHub <noreply@github.com>2017-02-27 20:25:50 +0100
commit5e334af369f2255707131b8dd0094f9c3d27d851 (patch)
tree345e0a0704e98a55be2cbe956f4d78dacbda1b25 /src/core/hle/service/ir/ir.h
parentFix log entry in timer::signal (#2600) (diff)
parentIR: separate functions of each port to their own files (diff)
downloadyuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar.gz
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar.bz2
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar.lz
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar.xz
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.tar.zst
yuzu-5e334af369f2255707131b8dd0094f9c3d27d851.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ir/ir.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/core/hle/service/ir/ir.h b/src/core/hle/service/ir/ir.h
index 72d44ce60..c741498e2 100644
--- a/src/core/hle/service/ir/ir.h
+++ b/src/core/hle/service/ir/ir.h
@@ -10,63 +10,6 @@ class Interface;
namespace IR {
-/**
- * IR::GetHandles service function
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2 : Translate header, used by the ARM11-kernel
- * 3 : Shared memory handle
- * 4 : Event handle
- */
-void GetHandles(Interface* self);
-
-/**
- * IR::InitializeIrNopShared service function
- * Inputs:
- * 1 : Size of transfer buffer
- * 2 : Recv buffer size
- * 3 : unknown
- * 4 : Send buffer size
- * 5 : unknown
- * 6 : BaudRate (u8)
- * 7 : 0
- * 8 : Handle of transfer shared memory
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void InitializeIrNopShared(Interface* self);
-
-/**
- * IR::FinalizeIrNop service function
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void FinalizeIrNop(Interface* self);
-
-/**
- * IR::GetConnectionStatusEvent service function
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2 : Connection Status Event handle
- */
-void GetConnectionStatusEvent(Interface* self);
-
-/**
- * IR::Disconnect service function
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void Disconnect(Interface* self);
-
-/**
- * IR::RequireConnection service function
- * Inputs:
- * 1 : unknown (u8), looks like always 1
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void RequireConnection(Interface* self);
-
/// Initialize IR service
void Init();