mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-06 18:35:05 +01:00
18 lines
313 B
C
18 lines
313 B
C
|
// Copyright 2015 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace Service {
|
||
|
namespace FRD {
|
||
|
|
||
|
/// Initialize FRD service(s)
|
||
|
void Init();
|
||
|
|
||
|
/// Shutdown FRD service(s)
|
||
|
void Shutdown();
|
||
|
|
||
|
} // namespace FRD
|
||
|
} // namespace Service
|