summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/qtm/qtm_u.cpp
blob: a0f80843262f725c0f33d6bb76c66f7d49c91bee (plain) (tree)






















                                                    
// 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_u.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_U::QTM_U() {
    Register(FunctionTable);
}

} // namespace QTM
} // namespace Service