aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/frd_u.cpp
blob: c2ecef5bbe9ed67c708aa95fe36c75496bc7d5c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/log.h"
#include "core/hle/hle.h"
#include "core/hle/service/frd_u.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace FRD_U

namespace FRD_U {

    const Interface::FunctionInfo FunctionTable[] = {
        {0x00050000, nullptr,               "GetFriendKey"},
        {0x00080000, nullptr,               "GetMyPresence"},
        {0x00100040, nullptr,               "GetPassword"},
        {0x00190042, nullptr,               "GetFriendFavoriteGame"},
        {0x001A00C4, nullptr,               "GetFriendInfo"},
        {0x001B0080, nullptr,               "IsOnFriendList"},
        {0x001C0042, nullptr,               "DecodeLocalFriendCode"},
        {0x001D0002, nullptr,               "SetCurrentlyPlayingText"},
        {0x00320042, nullptr,               "SetClientSdkVersion"}
    };
    ////////////////////////////////////////////////////////////////////////////////////////////////////
    // Interface class

    Interface::Interface() {
        Register(FunctionTable, ARRAY_SIZE(FunctionTable));
    }

    Interface::~Interface() {
    }

} // namespace