blob: 8912aa6d9a7477e1b48cb5df3b0dd6d4bd006ffe (
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(TCHAR *text);
#endif
|