2015-03-27 16:51:54 -07:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Service {
|
2016-02-02 01:17:41 -05:00
|
|
|
|
|
|
|
class Interface;
|
|
|
|
|
2015-03-27 16:51:54 -07:00
|
|
|
namespace IR {
|
|
|
|
|
|
|
|
/// Initialize IR service
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
/// Shutdown IR service
|
|
|
|
void Shutdown();
|
|
|
|
|
|
|
|
} // namespace IR
|
|
|
|
} // namespace Service
|