bool TryGetValue(const wxRegKey& key, const wxString& str, wxMemoryBuffer &plVal) { return key.IsOpened() && key.HasValue(str) && key.QueryValue(str, plVal); }
bool TryGetValue(const wxRegKey& key, const wxString& str, long *plVal) { return key.IsOpened() && key.HasValue(str) && key.QueryValue(str, plVal); }