blob: 7fbf5f19267ce1f32733816da9cc0689a88a2d48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _SUBST_INC
#define _SUBST_INC
#include "options.h"
#include "translations.h"
//TCHAR *GetLastMessageText(HANDLE hContact);
//TCHAR *GetStatusMessageText(HANDLE hContact);
bool GetLabelText(HANDLE hContact, const DisplayItem &di, TCHAR *buff, int bufflen);
bool GetValueText(HANDLE hContact, const DisplayItem &di, TCHAR *buff, int bufflen);
void StripBBCodesInPlace(wchar_t *text);
#endif
|