11 lines
463 B
C++
11 lines
463 B
C++
#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;
|
|
}
|