More services & small clean ups

This commit is contained in:
purpasmart96
2014-12-21 11:52:10 -08:00
parent ae76469373
commit 9796bc1fa2
61 changed files with 367 additions and 309 deletions

View File

@ -11,25 +11,23 @@
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
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::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::~Interface() {
}
Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace