Lua: Fix type confusion between signed and unsigned
[lsnes.git] / include / library / running-executable.hpp
blob369b7084fa2f195f3eb4954a782e0b138ede5eb9
1 #ifndef _library__running_executable__hpp__included__
2 #define _library__running_executable__hpp__included__
4 #include <string>
6 /**
7 * Get full path of current executable.
9 * Returns: Full path of current executable.
10 * Throws std::runtime_error: Operation not supported!
12 std::string running_executable();
14 #endif