diff options
Diffstat (limited to 'include/m_clc.h')
-rw-r--r-- | include/m_clc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_clc.h b/include/m_clc.h index 7357e2fb1a..715eef8bc4 100644 --- a/include/m_clc.h +++ b/include/m_clc.h @@ -83,7 +83,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define CLM_GETFONT (CLM_FIRST+18) //wParam = fontId, see clm_setfont. returns hFont.
#define CLM_GETINDENT (CLM_FIRST+19) //wParam = new group indent
#define CLM_GETISEARCHSTRING (CLM_FIRST+20) //lParam = (char*)pszStr, max 120 bytes, returns number of chars in string
-#define CLM_GETITEMTEXT (CLM_FIRST+21) //wParam = hItem, lParam = (TCHAR*)pszStr, max 120 bytes
+#define CLM_GETITEMTEXT (CLM_FIRST+21) //wParam = hItem, lParam = (wchar_t*)pszStr, max 120 bytes
#define CLM_GETSCROLLTIME (CLM_FIRST+22) //returns time in ms
#define CLM_GETSELECTION (CLM_FIRST+23) //returns hItem
#define CLM_SETEXTRASPACE (CLM_FIRST+24) //wParam=extra space between icons
@@ -152,7 +152,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define CLM_SETLEFTMARGIN (CLM_FIRST+47) //wParam = pixels
typedef struct {
int cbSize;
- const TCHAR *pszText;
+ const wchar_t *pszText;
HANDLE hParentGroup;
DWORD flags;
HICON hIcon; //todo
|