added framework for APT service (application and title launching service)
This commit is contained in:
parent
524e78ece8
commit
9f4d677cdf
7 changed files with 126 additions and 5 deletions
21
src/core/hle/service/apt.cpp
Normal file
21
src/core/hle/service/apt.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
|
||||
#include "common/log.h"
|
||||
#include "core/hle/service/apt.h"
|
||||
|
||||
|
||||
|
||||
|
||||
namespace Service {
|
||||
|
||||
|
||||
Syscall::Result APT::Sync() {
|
||||
NOTICE_LOG(HLE, "APT::Sync - Initialize");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue