mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 04:47:56 -05:00
added framework for APT service (application and title launching service)
This commit is contained in:
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;
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user