From 4a966be3c32e745b2567e51c27766942f798f77d Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 26 Jul 2015 12:33:08 +0000 Subject: common projects git-svn-id: http://svn.miranda-ng.org/main/trunk@14724 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/RecentContacts/RecentContacts.vcxproj | 28 +++ .../RecentContacts/RecentContacts.vcxproj.filters | 4 + plugins/RecentContacts/RecentContacts_10.vcxproj | 195 -------------------- .../RecentContacts_10.vcxproj.filters | 47 ----- plugins/RecentContacts/RecentContacts_12.vcxproj | 198 --------------------- .../RecentContacts_12.vcxproj.filters | 47 ----- plugins/RecentContacts/RecentContacts_14.vcxproj | 198 --------------------- .../RecentContacts_14.vcxproj.filters | 47 ----- plugins/RecentContacts/src/RecentContacts.cpp | 2 +- plugins/RecentContacts/src/RecentContacts.h | 85 --------- plugins/RecentContacts/src/options.cpp | 3 +- plugins/RecentContacts/src/stdafx.cpp | 18 -- plugins/RecentContacts/src/stdafx.cxx | 18 ++ plugins/RecentContacts/src/stdafx.h | 84 +++++++++ 14 files changed, 136 insertions(+), 838 deletions(-) create mode 100644 plugins/RecentContacts/RecentContacts.vcxproj create mode 100644 plugins/RecentContacts/RecentContacts.vcxproj.filters delete mode 100644 plugins/RecentContacts/RecentContacts_10.vcxproj delete mode 100644 plugins/RecentContacts/RecentContacts_10.vcxproj.filters delete mode 100644 plugins/RecentContacts/RecentContacts_12.vcxproj delete mode 100644 plugins/RecentContacts/RecentContacts_12.vcxproj.filters delete mode 100644 plugins/RecentContacts/RecentContacts_14.vcxproj delete mode 100644 plugins/RecentContacts/RecentContacts_14.vcxproj.filters delete mode 100644 plugins/RecentContacts/src/RecentContacts.h delete mode 100644 plugins/RecentContacts/src/stdafx.cpp create mode 100644 plugins/RecentContacts/src/stdafx.cxx create mode 100644 plugins/RecentContacts/src/stdafx.h (limited to 'plugins/RecentContacts') diff --git a/plugins/RecentContacts/RecentContacts.vcxproj b/plugins/RecentContacts/RecentContacts.vcxproj new file mode 100644 index 0000000000..74d8195d1d --- /dev/null +++ b/plugins/RecentContacts/RecentContacts.vcxproj @@ -0,0 +1,28 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {07137F45-8B5F-4561-BEC8-B883E9123785} + RecentContacts + + + + + \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts.vcxproj.filters b/plugins/RecentContacts/RecentContacts.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/RecentContacts/RecentContacts.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_10.vcxproj b/plugins/RecentContacts/RecentContacts_10.vcxproj deleted file mode 100644 index 406435fc0e..0000000000 --- a/plugins/RecentContacts/RecentContacts_10.vcxproj +++ /dev/null @@ -1,195 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {07137F45-8B5F-4561-BEC8-B883E9123785} - RecentContacts - - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - true - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - EditAndContinue - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Create - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_10.vcxproj.filters b/plugins/RecentContacts/RecentContacts_10.vcxproj.filters deleted file mode 100644 index 5784120421..0000000000 --- a/plugins/RecentContacts/RecentContacts_10.vcxproj.filters +++ /dev/null @@ -1,47 +0,0 @@ - - - - - {a8e5f8af-fab4-45bb-be3e-7dcb02fd0b6f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2359b09a-bdf6-467a-996f-8c02cd5d8438} - h;hpp;hxx;hm;inl - - - {d5d389fb-98d8-4510-932a-9154b08ddf7a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_12.vcxproj b/plugins/RecentContacts/RecentContacts_12.vcxproj deleted file mode 100644 index bcaa92bffe..0000000000 --- a/plugins/RecentContacts/RecentContacts_12.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {07137F45-8B5F-4561-BEC8-B883E9123785} - RecentContacts - - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - EditAndContinue - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin12\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin12\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Create - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_12.vcxproj.filters b/plugins/RecentContacts/RecentContacts_12.vcxproj.filters deleted file mode 100644 index 5784120421..0000000000 --- a/plugins/RecentContacts/RecentContacts_12.vcxproj.filters +++ /dev/null @@ -1,47 +0,0 @@ - - - - - {a8e5f8af-fab4-45bb-be3e-7dcb02fd0b6f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2359b09a-bdf6-467a-996f-8c02cd5d8438} - h;hpp;hxx;hm;inl - - - {d5d389fb-98d8-4510-932a-9154b08ddf7a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_14.vcxproj b/plugins/RecentContacts/RecentContacts_14.vcxproj deleted file mode 100644 index d7db63f3b3..0000000000 --- a/plugins/RecentContacts/RecentContacts_14.vcxproj +++ /dev/null @@ -1,198 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {07137F45-8B5F-4561-BEC8-B883E9123785} - RecentContacts - - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.40219.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Use - RecentContacts.h - - - $(IntDir)$(TargetName).lib - true - true - true - Windows - false - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - EditAndContinue - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin14\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Use - Level3 - RecentContacts.h - - - true - $(IntDir)$(TargetName).lib - Windows - false - $(ProfileDir)..\..\bin14\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - Create - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts_14.vcxproj.filters b/plugins/RecentContacts/RecentContacts_14.vcxproj.filters deleted file mode 100644 index 5784120421..0000000000 --- a/plugins/RecentContacts/RecentContacts_14.vcxproj.filters +++ /dev/null @@ -1,47 +0,0 @@ - - - - - {a8e5f8af-fab4-45bb-be3e-7dcb02fd0b6f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2359b09a-bdf6-467a-996f-8c02cd5d8438} - h;hpp;hxx;hm;inl - - - {d5d389fb-98d8-4510-932a-9154b08ddf7a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/RecentContacts/src/RecentContacts.cpp b/plugins/RecentContacts/src/RecentContacts.cpp index 97f0c547b4..f197eca6e6 100644 --- a/plugins/RecentContacts/src/RecentContacts.cpp +++ b/plugins/RecentContacts/src/RecentContacts.cpp @@ -1,5 +1,5 @@ -#include "RecentContacts.h" +#include "stdafx.h" extern int onOptInitialise(WPARAM wParam, LPARAM lParam); diff --git a/plugins/RecentContacts/src/RecentContacts.h b/plugins/RecentContacts/src/RecentContacts.h deleted file mode 100644 index 43a21e8227..0000000000 --- a/plugins/RecentContacts/src/RecentContacts.h +++ /dev/null @@ -1,85 +0,0 @@ -#define _CRT_SECURE_NO_WARNINGS -#define _CRT_NONSTDC_NO_DEPRECATE - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "resource.h" -#include "Version.h" - -#define V_RECENTCONTACTS_TOGGLE_IGNORE "RecentContacts/ToggleIgnore" - -using namespace std; - -void wSetData(char **Data, const char *Value); -void wfree(char **Data); - -static char msLastUC_ShowListName[] = LPGEN("Recent Contacts"); - -static char dbLastUC_ModuleName[] = "RecentContacts"; -static char dbLastUC_LastUsedTimeLo[] = "LastUsedTimeLo"; -static char dbLastUC_LastUsedTimeHi[] = "LastUsedTimeHi"; -static char dbLastUC_WindowPosPrefix[] = "Window"; -static char dbLastUC_DateTimeFormat[] = "DateTimeFormat"; -static char dbLastUC_DateTimeFormatDefault[] = "(%Y-%m-%d %H:%M) "; -static char dbLastUC_MaxShownContacts[] = "MaxShownContacts"; -static char dbLastUC_IgnoreContact[] = "Ignore"; -static char dbLastUC_HideOfflineContacts[] = "HideOfflineContacts"; -static char dbLastUC_WindowAutosize[] = "WindowAutoSize"; - -static char msLastUC_ShowList[] = "RecentContacts/ShowList"; -static char msLastUC_IgnoreOff[] = "RecentContacts/SetIgnoreOff"; -static char msLastUC_IgnoreOn[] = "RecentContacts/SetIgnoreOn"; - -///////////////////////////////////////////////////////////////////////////////////////// - -typedef struct _LastUCOptions -{ - int MaxShownContacts; - int HideOffline; - int WindowAutoSize; - string DateTimeFormat; -} - LastUCOptions; - -extern LastUCOptions LastUCOpt; -//#include "m_tabsrmm.h" -// custom tabSRMM events -#define tabMSG_WINDOW_EVT_CUSTOM_BEFORESEND 1 -struct TABSRMM_SessionInfo { - unsigned int cbSize; - unsigned int evtCode; - HWND hwnd; // handle of the message dialog (tab) - HWND hwndContainer; // handle of the parent container - HWND hwndInput; // handle of the input area (rich edit) - /*struct MessageWindowData*/ void *dat; // the session info - /*struct ContainerWindowData*/ void *pContainer; -}; - - -typedef std::multimap <__time64_t, MCONTACT, std::greater<__time64_t> > cmultimap; -typedef std::pair <__time64_t, MCONTACT> cpair; - -typedef struct LASTUC_DLG_DATA -{ - cmultimap *Contacts; - SIZE WindowMinSize; - RECT ListUCRect; - MCONTACT hContact; -} LASTUC_DLG_DATA; \ No newline at end of file diff --git a/plugins/RecentContacts/src/options.cpp b/plugins/RecentContacts/src/options.cpp index 679e183168..d8f733a3fa 100644 --- a/plugins/RecentContacts/src/options.cpp +++ b/plugins/RecentContacts/src/options.cpp @@ -1,5 +1,4 @@ -#include "RecentContacts.h" -#include "resource.h" +#include "stdafx.h" extern HINSTANCE hInst; void LoadDBSettings(); diff --git a/plugins/RecentContacts/src/stdafx.cpp b/plugins/RecentContacts/src/stdafx.cpp deleted file mode 100644 index 196b0adef0..0000000000 --- a/plugins/RecentContacts/src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation version 2 -of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -*/ - -#include "RecentContacts.h" \ No newline at end of file diff --git a/plugins/RecentContacts/src/stdafx.cxx b/plugins/RecentContacts/src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/RecentContacts/src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation version 2 +of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#include "stdafx.h" \ No newline at end of file diff --git a/plugins/RecentContacts/src/stdafx.h b/plugins/RecentContacts/src/stdafx.h new file mode 100644 index 0000000000..06679f407e --- /dev/null +++ b/plugins/RecentContacts/src/stdafx.h @@ -0,0 +1,84 @@ +#define _CRT_NONSTDC_NO_DEPRECATE + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "resource.h" +#include "Version.h" + +#define V_RECENTCONTACTS_TOGGLE_IGNORE "RecentContacts/ToggleIgnore" + +using namespace std; + +void wSetData(char **Data, const char *Value); +void wfree(char **Data); + +static char msLastUC_ShowListName[] = LPGEN("Recent Contacts"); + +static char dbLastUC_ModuleName[] = "RecentContacts"; +static char dbLastUC_LastUsedTimeLo[] = "LastUsedTimeLo"; +static char dbLastUC_LastUsedTimeHi[] = "LastUsedTimeHi"; +static char dbLastUC_WindowPosPrefix[] = "Window"; +static char dbLastUC_DateTimeFormat[] = "DateTimeFormat"; +static char dbLastUC_DateTimeFormatDefault[] = "(%Y-%m-%d %H:%M) "; +static char dbLastUC_MaxShownContacts[] = "MaxShownContacts"; +static char dbLastUC_IgnoreContact[] = "Ignore"; +static char dbLastUC_HideOfflineContacts[] = "HideOfflineContacts"; +static char dbLastUC_WindowAutosize[] = "WindowAutoSize"; + +static char msLastUC_ShowList[] = "RecentContacts/ShowList"; +static char msLastUC_IgnoreOff[] = "RecentContacts/SetIgnoreOff"; +static char msLastUC_IgnoreOn[] = "RecentContacts/SetIgnoreOn"; + +///////////////////////////////////////////////////////////////////////////////////////// + +typedef struct _LastUCOptions +{ + int MaxShownContacts; + int HideOffline; + int WindowAutoSize; + string DateTimeFormat; +} + LastUCOptions; + +extern LastUCOptions LastUCOpt; +//#include "m_tabsrmm.h" +// custom tabSRMM events +#define tabMSG_WINDOW_EVT_CUSTOM_BEFORESEND 1 +struct TABSRMM_SessionInfo { + unsigned int cbSize; + unsigned int evtCode; + HWND hwnd; // handle of the message dialog (tab) + HWND hwndContainer; // handle of the parent container + HWND hwndInput; // handle of the input area (rich edit) + /*struct MessageWindowData*/ void *dat; // the session info + /*struct ContainerWindowData*/ void *pContainer; +}; + + +typedef std::multimap <__time64_t, MCONTACT, std::greater<__time64_t> > cmultimap; +typedef std::pair <__time64_t, MCONTACT> cpair; + +typedef struct LASTUC_DLG_DATA +{ + cmultimap *Contacts; + SIZE WindowMinSize; + RECT ListUCRect; + MCONTACT hContact; +} LASTUC_DLG_DATA; \ No newline at end of file -- cgit v1.2.3