summaryrefslogtreecommitdiff
path: root/plugins/StopSpamPlus/src/utils.cpp
blob: 91378b7181b35130dbe3b2954b853eb947691250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "stdafx.h"

tstring variables_parse(const wchar_t *tstrFormat, MCONTACT hContact)
{
	if (ServiceExists(MS_VARS_FORMATSTRING)) {
		FORMATINFO fi = {};
		fi.cbSize = sizeof(fi);
		fi.szFormat.w = wcsdup(tstrFormat);
		fi.hContact = hContact;
		fi.flags = FIF_UNICODE;
		wchar_t *tszParsed = (wchar_t *)CallService(MS_VARS_FORMATSTRING, (WPARAM)&fi, 0);
		free(fi.szFormat.w);
		if (tszParsed) {
			tstring tstrResult = tszParsed;
			mir_free(tszParsed);
			return tstrResult;
		}
	}
	return tstrFormat;
}

tstring trim(const tstring &tstr, const tstring &trimChars)
{
	size_t s = tstr.find_first_not_of(trimChars);
	size_t e = tstr.find_last_not_of(trimChars);

	if ((tstring::npos == s) || (tstring::npos == e))
		return L"";

	return tstr.substr(s, e - s + 1);
}