2014-04-11 05:28:28 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/function_wrappers.h"
|
|
|
|
#include "core/hle/hle_syscall.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-04-11 07:00:00 +05:30
|
|
|
typedef u32 Handle;
|
|
|
|
typedef s32 Result;
|
2014-04-11 05:28:28 +05:30
|
|
|
|
|
|
|
Result SVC_ConnectToPort(void* out, const char* port_name) {
|
2014-04-11 07:00:00 +05:30
|
|
|
NOTICE_LOG(OSHLE, "svcConnectToPort called, port_name: %s", port_name);
|
2014-04-11 05:28:28 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-11 07:45:07 +05:30
|
|
|
const HLE::FunctionDef SysCall_Table[] = {
|
2014-04-11 05:28:28 +05:30
|
|
|
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
|
|
|
|
};
|
|
|
|
|
2014-04-11 07:00:00 +05:30
|
|
|
void Register_SysCall() {
|
2014-04-11 07:45:07 +05:30
|
|
|
HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCall_Table), SysCall_Table);
|
2014-04-11 05:28:28 +05:30
|
|
|
}
|