|
|
@ -7,8 +7,8 @@
|
|
|
|
#include "core/hle/service/acc/async_context.h"
|
|
|
|
#include "core/hle/service/acc/async_context.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Service::Account {
|
|
|
|
namespace Service::Account {
|
|
|
|
IAsyncContext::IAsyncContext(Core::System& system)
|
|
|
|
IAsyncContext::IAsyncContext(Core::System& system_)
|
|
|
|
: ServiceFramework{system, "IAsyncContext"}, compeletion_event{system.Kernel()} {
|
|
|
|
: ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} {
|
|
|
|
|
|
|
|
|
|
|
|
Kernel::KAutoObject::Create(std::addressof(compeletion_event));
|
|
|
|
Kernel::KAutoObject::Create(std::addressof(compeletion_event));
|
|
|
|
compeletion_event.Initialize("IAsyncContext:CompletionEvent");
|
|
|
|
compeletion_event.Initialize("IAsyncContext:CompletionEvent");
|
|
|
|