2014-04-10 23:58:28 +00:00
|
|
|
// 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 01:30:00 +00:00
|
|
|
typedef u32 Handle;
|
|
|
|
typedef s32 Result;
|
2014-04-10 23:58:28 +00:00
|
|
|
|
|
|
|
Result SVC_ConnectToPort(void* out, const char* port_name) {
|
2014-04-11 01:30:00 +00:00
|
|
|
NOTICE_LOG(OSHLE, "svcConnectToPort called, port_name: %s", port_name);
|
2014-04-10 23:58:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-11 02:15:07 +00:00
|
|
|
const HLE::FunctionDef SysCall_Table[] = {
|
2014-04-10 23:58:28 +00:00
|
|
|
{0x2D, WrapI_VC<SVC_ConnectToPort>, "svcConnectToPort"},
|
|
|
|
};
|
|
|
|
|
2014-04-11 01:30:00 +00:00
|
|
|
void Register_SysCall() {
|
2014-04-11 02:15:07 +00:00
|
|
|
HLE::RegisterModule("SysCallTable", ARRAY_SIZE(SysCall_Table), SysCall_Table);
|
2014-04-10 23:58:28 +00:00
|
|
|
}
|