added framework for APT service (application and title launching service)

This commit is contained in:
bunnei 2014-04-13 16:33:45 -04:00
parent 524e78ece8
commit 9f4d677cdf
7 changed files with 126 additions and 5 deletions

View 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;
}
}