summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/qtm/qtm_sp.cpp
blob: 6e0695d347e0085738890375e16e4ae685330a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/qtm/qtm_sp.h"

namespace Service {
namespace QTM {

const Interface::FunctionInfo FunctionTable[] = {
    // clang-format off
    // qtm common commands
    {0x00010080, nullptr, "GetHeadtrackingInfoRaw"},
    {0x00020080, nullptr, "GetHeadtrackingInfo"},
    // clang-format on
};

QTM_SP::QTM_SP() {
    Register(FunctionTable);
}

} // namespace QTM
} // namespace Service