add last backwards-compatible version

This commit is contained in:
2021-12-14 00:33:46 -07:00
parent 68b10d413b
commit b0dd3f07f3
335 changed files with 4746 additions and 19627 deletions

View File

@@ -27,7 +27,7 @@ namespace core_api {
const char * get_profile_path();
//! Returns a path to <file name> in fb2k profile folder.
inline pfc::string8 pathInProfile(const char * fileName) { pfc::string8 p( core_api::get_profile_path() ); p.add_filename( fileName ); return p; }
inline pfc::string8 pathInProfile(const char * fileName) { pfc::string8 p( core_api::get_profile_path() ); p.add_filename( fileName ); return std::move(p); }
//! Returns whether foobar2000 has been installed in "portable" mode.
bool is_portable_mode_enabled();