From a86284cd3178f8af62efa3a21787fbc9e3c3acba Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 8 Aug 2015 19:32:17 +0000 Subject: stdchat: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14862 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/core/stdchat/src/chat.h | 173 -------------------- src/core/stdchat/src/log.cpp | 2 +- src/core/stdchat/src/main.cpp | 2 +- src/core/stdchat/src/manager.cpp | 2 +- src/core/stdchat/src/message.cpp | 2 +- src/core/stdchat/src/options.cpp | 2 +- src/core/stdchat/src/services.cpp | 2 +- src/core/stdchat/src/stdafx.cpp | 18 --- src/core/stdchat/src/stdafx.cxx | 18 +++ src/core/stdchat/src/stdafx.h | 173 ++++++++++++++++++++ src/core/stdchat/src/tools.cpp | 2 +- src/core/stdchat/src/window.cpp | 2 +- src/core/stdchat/stdchat.vcxproj | 28 ++++ src/core/stdchat/stdchat.vcxproj.filters | 4 + src/core/stdchat/stdchat_10.vcxproj | 232 --------------------------- src/core/stdchat/stdchat_10.vcxproj.filters | 77 --------- src/core/stdchat/stdchat_12.vcxproj | 235 ---------------------------- src/core/stdchat/stdchat_12.vcxproj.filters | 77 --------- src/core/stdchat/stdchat_14.vcxproj | 235 ---------------------------- src/core/stdchat/stdchat_14.vcxproj.filters | 77 --------- 20 files changed, 231 insertions(+), 1132 deletions(-) delete mode 100644 src/core/stdchat/src/chat.h delete mode 100644 src/core/stdchat/src/stdafx.cpp create mode 100644 src/core/stdchat/src/stdafx.cxx create mode 100644 src/core/stdchat/src/stdafx.h create mode 100644 src/core/stdchat/stdchat.vcxproj create mode 100644 src/core/stdchat/stdchat.vcxproj.filters delete mode 100644 src/core/stdchat/stdchat_10.vcxproj delete mode 100644 src/core/stdchat/stdchat_10.vcxproj.filters delete mode 100644 src/core/stdchat/stdchat_12.vcxproj delete mode 100644 src/core/stdchat/stdchat_12.vcxproj.filters delete mode 100644 src/core/stdchat/stdchat_14.vcxproj delete mode 100644 src/core/stdchat/stdchat_14.vcxproj.filters (limited to 'src/core') diff --git a/src/core/stdchat/src/chat.h b/src/core/stdchat/src/chat.h deleted file mode 100644 index da9ed84090..0000000000 --- a/src/core/stdchat/src/chat.h +++ /dev/null @@ -1,173 +0,0 @@ -/* -Chat module plugin for Miranda IM - -Copyright (C) 2003 Jörgen Persson - -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; either version 2 -of the License, or (at your option) any later version. - -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, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*/ - -#ifndef _CHAT_H_ -#define _CHAT_H_ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "m_ieview.h" -#include "m_smileyadd.h" - -#include "resource.h" -#include "version.h" - -#define EM_SUBCLASSED (WM_USER+200) -#define EM_ACTIVATE (WM_USER+201) - -struct TABLIST -{ - TCHAR *pszID; - char *pszModule; - TABLIST *next; -}; - -struct MODULEINFO : public GCModuleInfoBase -{ - int OnlineIconIndex; - int OfflineIconIndex; -}; - -struct SESSION_INFO : public GCSessionInfoBase -{ - int iX, iY; - IAccPropServices* pAccPropServicesForNickList; -}; - -struct LOGSTREAMDATA : public GCLogStreamDataBase {}; - -struct GlobalLogSettings : public GlobalLogSettingsBase -{ - int iX, iY; - bool bTabsEnable, TabsAtBottom, TabCloseOnDblClick, TabRestore; - - HFONT MessageAreaFont; - COLORREF MessageAreaColor; -}; - -extern GlobalLogSettings g_Settings; -extern SESSION_INFO g_TabSession; -extern CHAT_MANAGER saveCI; -extern TABLIST *g_TabList; -extern HMENU g_hMenu; -extern HIMAGELIST hIconsList; - -extern HINSTANCE g_hInst; -extern BOOL SmileyAddInstalled, PopupInstalled; - -struct CREOleCallback : public IRichEditOleCallback -{ - CREOleCallback() : refCount(0), nextStgId(0), pictStg(NULL) {} - unsigned refCount; - IStorage *pictStg; - int nextStgId; - - STDMETHOD(QueryInterface)(REFIID riid, LPVOID FAR * lplpObj); - STDMETHOD_(ULONG,AddRef) (THIS); - STDMETHOD_(ULONG,Release) (THIS); - - STDMETHOD(ContextSensitiveHelp)(BOOL fEnterMode); - STDMETHOD(GetNewStorage) (LPSTORAGE FAR * lplpstg); - STDMETHOD(GetInPlaceContext) (LPOLEINPLACEFRAME FAR * lplpFrame, LPOLEINPLACEUIWINDOW FAR * lplpDoc, LPOLEINPLACEFRAMEINFO lpFrameInfo); - STDMETHOD(ShowContainerUI) (BOOL fShow); - STDMETHOD(QueryInsertObject) (LPCLSID lpclsid, LPSTORAGE lpstg, LONG cp); - STDMETHOD(DeleteObject) (LPOLEOBJECT lpoleobj); - STDMETHOD(QueryAcceptData) (LPDATAOBJECT lpdataobj, CLIPFORMAT FAR * lpcfFormat, DWORD reco, BOOL fReally, HGLOBAL hMetaPict); - STDMETHOD(GetClipboardData) (CHARRANGE FAR * lpchrg, DWORD reco, LPDATAOBJECT FAR * lplpdataobj); - STDMETHOD(GetDragDropEffect) (BOOL fDrag, DWORD grfKeyState, LPDWORD pdwEffect); - STDMETHOD(GetContextMenu) (WORD seltype, LPOLEOBJECT lpoleobj, CHARRANGE FAR * lpchrg, HMENU FAR * lphmenu) ; -}; - -extern CREOleCallback reOleCallback; - -//main.c -void LoadIcons(void); - -// log.c -void Log_StreamInEvent(HWND hwndDlg, LOGINFO* lin, SESSION_INFO *si, BOOL bRedraw, BOOL bPhaseTwo); -void ValidateFilename (TCHAR * filename); -char* Log_CreateRtfHeader(MODULEINFO * mi); - -// window.c -INT_PTR CALLBACK RoomWndProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam); -int GetTextPixelSize( TCHAR* pszText, HFONT hFont, BOOL bWidth); - -SESSION_INFO* SM_GetPrevWindow(SESSION_INFO *si); -SESSION_INFO* SM_GetNextWindow(SESSION_INFO *si); - -// options.c -int OptionsInitialize(WPARAM wParam, LPARAM lParam); -void AddIcons(void); -HICON LoadIconEx(const char *pszIcoLibName, bool big); - -// services.c -void ShowRoom(SESSION_INFO *si, WPARAM wp, BOOL bSetForeground); - -// tools.c -int GetColorIndex(const char* pszModule, COLORREF cr); -void CheckColorsInModule(const char* pszModule); -int GetRichTextLength(HWND hwnd); -UINT CreateGCMenu(HWND hwndDlg, HMENU *hMenu, int iIndex, POINT pt, SESSION_INFO *si, TCHAR* pszUID, TCHAR* pszWordText); -void DestroyGCMenu(HMENU *hMenu, int iIndex); -bool LoadMessageFont(LOGFONT *lf, COLORREF *colour); - -// message.c -char* Message_GetFromStream(HWND hwndDlg, SESSION_INFO *si); - -BOOL TabM_AddTab(const TCHAR *pszID, const char* pszModule); -BOOL TabM_RemoveAll(void); - -#pragma comment(lib,"comctl32.lib") - -#endif diff --git a/src/core/stdchat/src/log.cpp b/src/core/stdchat/src/log.cpp index b247fb9029..bad245c46c 100644 --- a/src/core/stdchat/src/log.cpp +++ b/src/core/stdchat/src/log.cpp @@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" // The code for streaming the text is to a large extent copied from // the srmm module and then modified to fit the chat module. diff --git a/src/core/stdchat/src/main.cpp b/src/core/stdchat/src/main.cpp index f849446347..d7238ac74f 100644 --- a/src/core/stdchat/src/main.cpp +++ b/src/core/stdchat/src/main.cpp @@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" // globals CLIST_INTERFACE *pcli; diff --git a/src/core/stdchat/src/manager.cpp b/src/core/stdchat/src/manager.cpp index 0761d93d29..ba64d716e3 100644 --- a/src/core/stdchat/src/manager.cpp +++ b/src/core/stdchat/src/manager.cpp @@ -20,7 +20,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" TABLIST *g_TabList = 0; diff --git a/src/core/stdchat/src/message.cpp b/src/core/stdchat/src/message.cpp index 943aa24055..c89214d373 100644 --- a/src/core/stdchat/src/message.cpp +++ b/src/core/stdchat/src/message.cpp @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" #include static DWORD CALLBACK Message_StreamCallback(DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG * pcb) diff --git a/src/core/stdchat/src/options.cpp b/src/core/stdchat/src/options.cpp index e75482a151..7211120663 100644 --- a/src/core/stdchat/src/options.cpp +++ b/src/core/stdchat/src/options.cpp @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "resource.h" -#include "chat.h" +#include "stdafx.h" struct branch_t { diff --git a/src/core/stdchat/src/services.cpp b/src/core/stdchat/src/services.cpp index cf03f12d4c..28d810c05e 100644 --- a/src/core/stdchat/src/services.cpp +++ b/src/core/stdchat/src/services.cpp @@ -20,7 +20,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" void ShowRoom(SESSION_INFO *si, WPARAM wp, BOOL bSetForeground) { diff --git a/src/core/stdchat/src/stdafx.cpp b/src/core/stdchat/src/stdafx.cpp deleted file mode 100644 index 1eb3147579..0000000000 --- a/src/core/stdchat/src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG team (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 "chat.h" \ No newline at end of file diff --git a/src/core/stdchat/src/stdafx.cxx b/src/core/stdchat/src/stdafx.cxx new file mode 100644 index 0000000000..8aab1386be --- /dev/null +++ b/src/core/stdchat/src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG team (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/src/core/stdchat/src/stdafx.h b/src/core/stdchat/src/stdafx.h new file mode 100644 index 0000000000..da9ed84090 --- /dev/null +++ b/src/core/stdchat/src/stdafx.h @@ -0,0 +1,173 @@ +/* +Chat module plugin for Miranda IM + +Copyright (C) 2003 Jörgen Persson + +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; either version 2 +of the License, or (at your option) any later version. + +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, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + +#ifndef _CHAT_H_ +#define _CHAT_H_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "m_ieview.h" +#include "m_smileyadd.h" + +#include "resource.h" +#include "version.h" + +#define EM_SUBCLASSED (WM_USER+200) +#define EM_ACTIVATE (WM_USER+201) + +struct TABLIST +{ + TCHAR *pszID; + char *pszModule; + TABLIST *next; +}; + +struct MODULEINFO : public GCModuleInfoBase +{ + int OnlineIconIndex; + int OfflineIconIndex; +}; + +struct SESSION_INFO : public GCSessionInfoBase +{ + int iX, iY; + IAccPropServices* pAccPropServicesForNickList; +}; + +struct LOGSTREAMDATA : public GCLogStreamDataBase {}; + +struct GlobalLogSettings : public GlobalLogSettingsBase +{ + int iX, iY; + bool bTabsEnable, TabsAtBottom, TabCloseOnDblClick, TabRestore; + + HFONT MessageAreaFont; + COLORREF MessageAreaColor; +}; + +extern GlobalLogSettings g_Settings; +extern SESSION_INFO g_TabSession; +extern CHAT_MANAGER saveCI; +extern TABLIST *g_TabList; +extern HMENU g_hMenu; +extern HIMAGELIST hIconsList; + +extern HINSTANCE g_hInst; +extern BOOL SmileyAddInstalled, PopupInstalled; + +struct CREOleCallback : public IRichEditOleCallback +{ + CREOleCallback() : refCount(0), nextStgId(0), pictStg(NULL) {} + unsigned refCount; + IStorage *pictStg; + int nextStgId; + + STDMETHOD(QueryInterface)(REFIID riid, LPVOID FAR * lplpObj); + STDMETHOD_(ULONG,AddRef) (THIS); + STDMETHOD_(ULONG,Release) (THIS); + + STDMETHOD(ContextSensitiveHelp)(BOOL fEnterMode); + STDMETHOD(GetNewStorage) (LPSTORAGE FAR * lplpstg); + STDMETHOD(GetInPlaceContext) (LPOLEINPLACEFRAME FAR * lplpFrame, LPOLEINPLACEUIWINDOW FAR * lplpDoc, LPOLEINPLACEFRAMEINFO lpFrameInfo); + STDMETHOD(ShowContainerUI) (BOOL fShow); + STDMETHOD(QueryInsertObject) (LPCLSID lpclsid, LPSTORAGE lpstg, LONG cp); + STDMETHOD(DeleteObject) (LPOLEOBJECT lpoleobj); + STDMETHOD(QueryAcceptData) (LPDATAOBJECT lpdataobj, CLIPFORMAT FAR * lpcfFormat, DWORD reco, BOOL fReally, HGLOBAL hMetaPict); + STDMETHOD(GetClipboardData) (CHARRANGE FAR * lpchrg, DWORD reco, LPDATAOBJECT FAR * lplpdataobj); + STDMETHOD(GetDragDropEffect) (BOOL fDrag, DWORD grfKeyState, LPDWORD pdwEffect); + STDMETHOD(GetContextMenu) (WORD seltype, LPOLEOBJECT lpoleobj, CHARRANGE FAR * lpchrg, HMENU FAR * lphmenu) ; +}; + +extern CREOleCallback reOleCallback; + +//main.c +void LoadIcons(void); + +// log.c +void Log_StreamInEvent(HWND hwndDlg, LOGINFO* lin, SESSION_INFO *si, BOOL bRedraw, BOOL bPhaseTwo); +void ValidateFilename (TCHAR * filename); +char* Log_CreateRtfHeader(MODULEINFO * mi); + +// window.c +INT_PTR CALLBACK RoomWndProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam); +int GetTextPixelSize( TCHAR* pszText, HFONT hFont, BOOL bWidth); + +SESSION_INFO* SM_GetPrevWindow(SESSION_INFO *si); +SESSION_INFO* SM_GetNextWindow(SESSION_INFO *si); + +// options.c +int OptionsInitialize(WPARAM wParam, LPARAM lParam); +void AddIcons(void); +HICON LoadIconEx(const char *pszIcoLibName, bool big); + +// services.c +void ShowRoom(SESSION_INFO *si, WPARAM wp, BOOL bSetForeground); + +// tools.c +int GetColorIndex(const char* pszModule, COLORREF cr); +void CheckColorsInModule(const char* pszModule); +int GetRichTextLength(HWND hwnd); +UINT CreateGCMenu(HWND hwndDlg, HMENU *hMenu, int iIndex, POINT pt, SESSION_INFO *si, TCHAR* pszUID, TCHAR* pszWordText); +void DestroyGCMenu(HMENU *hMenu, int iIndex); +bool LoadMessageFont(LOGFONT *lf, COLORREF *colour); + +// message.c +char* Message_GetFromStream(HWND hwndDlg, SESSION_INFO *si); + +BOOL TabM_AddTab(const TCHAR *pszID, const char* pszModule); +BOOL TabM_RemoveAll(void); + +#pragma comment(lib,"comctl32.lib") + +#endif diff --git a/src/core/stdchat/src/tools.cpp b/src/core/stdchat/src/tools.cpp index 6d8bc79d6a..4f721cd819 100644 --- a/src/core/stdchat/src/tools.cpp +++ b/src/core/stdchat/src/tools.cpp @@ -20,7 +20,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" bool LoadMessageFont(LOGFONT *lf, COLORREF *colour) { diff --git a/src/core/stdchat/src/window.cpp b/src/core/stdchat/src/window.cpp index bb9dbffbd3..7f6bf7b43c 100644 --- a/src/core/stdchat/src/window.cpp +++ b/src/core/stdchat/src/window.cpp @@ -20,7 +20,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "chat.h" +#include "stdafx.h" static HKL hkl = NULL; diff --git a/src/core/stdchat/stdchat.vcxproj b/src/core/stdchat/stdchat.vcxproj new file mode 100644 index 0000000000..fc4c0f35e4 --- /dev/null +++ b/src/core/stdchat/stdchat.vcxproj @@ -0,0 +1,28 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + StdChat + {268BD296-8DD3-4715-A386-CF120398EC98} + + + + + \ No newline at end of file diff --git a/src/core/stdchat/stdchat.vcxproj.filters b/src/core/stdchat/stdchat.vcxproj.filters new file mode 100644 index 0000000000..e39f86d5d6 --- /dev/null +++ b/src/core/stdchat/stdchat.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/core/stdchat/stdchat_10.vcxproj b/src/core/stdchat/stdchat_10.vcxproj deleted file mode 100644 index 68761ae518..0000000000 --- a/src/core/stdchat/stdchat_10.vcxproj +++ /dev/null @@ -1,232 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdChat - {268BD296-8DD3-4715-A386-CF120398EC98} - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30128.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /PDBALTPATH:%_PDB% - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /PDBALTPATH:%_PDB% - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin10\lib - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/core/stdchat/stdchat_10.vcxproj.filters b/src/core/stdchat/stdchat_10.vcxproj.filters deleted file mode 100644 index 43d96ea37d..0000000000 --- a/src/core/stdchat/stdchat_10.vcxproj.filters +++ /dev/null @@ -1,77 +0,0 @@ - - - - - {ce9c3130-07ac-478e-8752-265c31f3bc8f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {b87dc5b7-8e8e-49a1-8291-b27797a443b7} - h;hpp;hxx;hm;inl - - - {ac500f7b-22cc-423c-a5e9-35da455c5e6a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - {6f7bae66-5f17-4ccb-8721-25f55e5c4e64} - .txt - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Documentation - - - Documentation - - - Documentation - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/src/core/stdchat/stdchat_12.vcxproj b/src/core/stdchat/stdchat_12.vcxproj deleted file mode 100644 index 1f8f705220..0000000000 --- a/src/core/stdchat/stdchat_12.vcxproj +++ /dev/null @@ -1,235 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdChat - {268BD296-8DD3-4715-A386-CF120398EC98} - - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30128.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - false - - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin12\lib - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/core/stdchat/stdchat_12.vcxproj.filters b/src/core/stdchat/stdchat_12.vcxproj.filters deleted file mode 100644 index 43d96ea37d..0000000000 --- a/src/core/stdchat/stdchat_12.vcxproj.filters +++ /dev/null @@ -1,77 +0,0 @@ - - - - - {ce9c3130-07ac-478e-8752-265c31f3bc8f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {b87dc5b7-8e8e-49a1-8291-b27797a443b7} - h;hpp;hxx;hm;inl - - - {ac500f7b-22cc-423c-a5e9-35da455c5e6a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - {6f7bae66-5f17-4ccb-8721-25f55e5c4e64} - .txt - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Documentation - - - Documentation - - - Documentation - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/src/core/stdchat/stdchat_14.vcxproj b/src/core/stdchat/stdchat_14.vcxproj deleted file mode 100644 index 5756073679..0000000000 --- a/src/core/stdchat/stdchat_14.vcxproj +++ /dev/null @@ -1,235 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StdChat - {268BD296-8DD3-4715-A386-CF120398EC98} - - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30128.1 - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Core\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Core\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - EditAndContinue - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - false - - - - - Disabled - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - true - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - /DLL %(AdditionalOptions) - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27 - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - Full - OnlyExplicitInline - true - Size - ..\..\..\include;..\..\..\plugins\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;CHAT_EXPORTS;%(PreprocessorDefinitions) - true - false - false - true - Fast - Level3 - 4996;%(DisableSpecificWarnings) - Use - chat.h - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\..\include;..\..\..\include\msapi - - - Version.lib;UxTheme.lib;%(AdditionalDependencies) - type=%27Win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies) - true - true - true - false - $(IntDir)$(TargetName).lib - Windows - $(ProfileDir)..\..\..\bin14\lib - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/core/stdchat/stdchat_14.vcxproj.filters b/src/core/stdchat/stdchat_14.vcxproj.filters deleted file mode 100644 index 43d96ea37d..0000000000 --- a/src/core/stdchat/stdchat_14.vcxproj.filters +++ /dev/null @@ -1,77 +0,0 @@ - - - - - {ce9c3130-07ac-478e-8752-265c31f3bc8f} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {b87dc5b7-8e8e-49a1-8291-b27797a443b7} - h;hpp;hxx;hm;inl - - - {ac500f7b-22cc-423c-a5e9-35da455c5e6a} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - {6f7bae66-5f17-4ccb-8721-25f55e5c4e64} - .txt - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - Documentation - - - Documentation - - - Documentation - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file -- cgit v1.2.3