| 198 | } |
| 199 | |
| 200 | void WriteMetaDataSearchParamASCII(uint8 uMetaTagID, const wxString& rstrValue) |
| 201 | { |
| 202 | m_data->WriteUInt8(2); // string parameter type |
| 203 | m_data->WriteString(rstrValue, utf8strNone); // string value |
| 204 | m_data->WriteUInt16(sizeof(uint8)); // meta tag ID length |
| 205 | m_data->WriteUInt8(uMetaTagID); // meta tag ID name |
| 206 | } |
| 207 | |
| 208 | void WriteMetaDataSearchParam(const wxString& pszMetaTagID, const wxString& rstrValue) |
| 209 | { |
no test coverage detected