latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "foobar2000.h"
void preferences_page::get_help_url_helper(pfc::string_base & out, const char * category, const GUID & id, const char * name) {
out.reset();
out << "http://help.foobar2000.org/" << core_version_info::g_get_version_string() << "/" << category << "/" << pfc::print_guid(id) << "/" << name;
}
bool preferences_page::get_help_url(pfc::string_base & p_out) {
get_help_url_helper(p_out,"preferences",get_guid(), get_name());
return true;
}