mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
27 lines
807 B
C++
27 lines
807 B
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// Scripting.h
|
|
//
|
|
// Executes custom scripts for various events in EmulationStation.
|
|
// By calling fireEvent() the scripts inside the directory corresponding to the
|
|
// argument 'eventName' will be executed with arg1 and arg2 as the script arguments.
|
|
//
|
|
// The scripts are searched for in ~/.emulationstation/scripts/<eventName>
|
|
// For example, if the event is called 'game-start', all scripts inside the directory
|
|
// ~/.emulationstation/scripts/game-start/ will be executed.
|
|
//
|
|
|
|
#ifndef ES_CORE_SCRIPTING_H
|
|
#define ES_CORE_SCRIPTING_H
|
|
|
|
#include <string>
|
|
|
|
namespace Scripting
|
|
{
|
|
void fireEvent(const std::string& eventName,
|
|
const std::string& arg1="", const std::string& arg2="");
|
|
}
|
|
|
|
#endif //ES_CORE_SCRIPTING_H
|