summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/qtm/qtm_s.cpp
blob: ad7df24a0acba58638e1e1f5472a335d737900a4 (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_s.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_S::QTM_S() {
    Register(FunctionTable);
}

} // namespace QTM
} // namespace Service