19 lines
342 B
C++
19 lines
342 B
C++
// Copyright 2014 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace UICommon
|
|
{
|
|
void Init();
|
|
void Shutdown();
|
|
|
|
void CreateDirectories();
|
|
void SetUserDirectory(const std::string& custom_path);
|
|
|
|
bool TriggerSTMPowerEvent();
|
|
|
|
void SaveWiimoteSources();
|
|
} // namespace UICommon
|