From 1ce3da1cca093143d9629bc46e221dd8be962e12 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 31 May 2015 11:46:05 +0000 Subject: - MAllStrings: a handy union to hold an incoming string parameter of any type; - FNAMECHAR: atavism extincted; - PROTOSEARCHRESULT: structure prepared to use results of any type, including utf git-svn-id: http://svn.miranda-ng.org/main/trunk@13932 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Sametime/src/sametime.h | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) (limited to 'protocols/Sametime/src/sametime.h') diff --git a/protocols/Sametime/src/sametime.h b/protocols/Sametime/src/sametime.h index d1a6f96a1a..22d07668e8 100644 --- a/protocols/Sametime/src/sametime.h +++ b/protocols/Sametime/src/sametime.h @@ -70,24 +70,19 @@ typedef struct Options_tag { bool idle_as_away; } SametimeOptions; -typedef struct { - int cbSize; - char* nick; - char* firstName; - char* lastName; - char* email; - char reserved[16]; +struct MYPROTOSEARCHRESULT : public PROTOSEARCHRESULT +{ char name[256]; char stid[256]; bool group; -} MYPROTOSEARCHRESULT; - -typedef struct { - size_t nSize; - int nFieldCount; - TCHAR** pszFields; - MYPROTOSEARCHRESULT psr; -} MYCUSTOMSEARCHRESULTS; +}; + +struct MYCUSTOMSEARCHRESULTS : public CUSTOMSEARCHRESULTS +{ + char name[256]; + char stid[256]; + bool group; +}; typedef struct FileTransferClientData_tag { char* save_path; -- cgit v1.2.3