2019-03-26 10:50:41 -04:00

19 lines
356 B
C++

// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service::PXI {
/// Interface to "pxi:dev" service
class DEV final : public ServiceFramework<DEV> {
public:
DEV();
~DEV();
};
} // namespace Service::PXI