From e88506076286ec7c878231c5362ea5c1bb2b612c Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 1 Aug 2015 21:06:56 +0000 Subject: wumf: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14802 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/WhoUsesMyFiles/src/list.cpp | 2 +- plugins/WhoUsesMyFiles/src/stdafx.cpp | 18 --- plugins/WhoUsesMyFiles/src/stdafx.cxx | 18 +++ plugins/WhoUsesMyFiles/src/stdafx.h | 132 ++++++++++++++++ plugins/WhoUsesMyFiles/src/wumf.cpp | 2 +- plugins/WhoUsesMyFiles/src/wumf.h | 134 ---------------- plugins/WhoUsesMyFiles/src/wumfplug.cpp | 2 +- plugins/WhoUsesMyFiles/wumf.vcxproj | 28 ++++ plugins/WhoUsesMyFiles/wumf.vcxproj.filters | 4 + plugins/WhoUsesMyFiles/wumf_10.vcxproj | 206 ------------------------- plugins/WhoUsesMyFiles/wumf_10.vcxproj.filters | 61 -------- plugins/WhoUsesMyFiles/wumf_12.vcxproj | 204 ------------------------ plugins/WhoUsesMyFiles/wumf_12.vcxproj.filters | 50 ------ plugins/WhoUsesMyFiles/wumf_14.vcxproj | 204 ------------------------ plugins/WhoUsesMyFiles/wumf_14.vcxproj.filters | 50 ------ 15 files changed, 185 insertions(+), 930 deletions(-) delete mode 100644 plugins/WhoUsesMyFiles/src/stdafx.cpp create mode 100644 plugins/WhoUsesMyFiles/src/stdafx.cxx create mode 100644 plugins/WhoUsesMyFiles/src/stdafx.h delete mode 100644 plugins/WhoUsesMyFiles/src/wumf.h create mode 100644 plugins/WhoUsesMyFiles/wumf.vcxproj create mode 100644 plugins/WhoUsesMyFiles/wumf.vcxproj.filters delete mode 100644 plugins/WhoUsesMyFiles/wumf_10.vcxproj delete mode 100644 plugins/WhoUsesMyFiles/wumf_10.vcxproj.filters delete mode 100644 plugins/WhoUsesMyFiles/wumf_12.vcxproj delete mode 100644 plugins/WhoUsesMyFiles/wumf_12.vcxproj.filters delete mode 100644 plugins/WhoUsesMyFiles/wumf_14.vcxproj delete mode 100644 plugins/WhoUsesMyFiles/wumf_14.vcxproj.filters (limited to 'plugins') diff --git a/plugins/WhoUsesMyFiles/src/list.cpp b/plugins/WhoUsesMyFiles/src/list.cpp index 89246dc052..25f1230b8f 100644 --- a/plugins/WhoUsesMyFiles/src/list.cpp +++ b/plugins/WhoUsesMyFiles/src/list.cpp @@ -1,4 +1,4 @@ -#include "wumf.h" +#include "stdafx.h" PWumf new_wumf( DWORD dwID, LPTSTR szUser, diff --git a/plugins/WhoUsesMyFiles/src/stdafx.cpp b/plugins/WhoUsesMyFiles/src/stdafx.cpp deleted file mode 100644 index 8fd2eb1d30..0000000000 --- a/plugins/WhoUsesMyFiles/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 "wumf.h" \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/src/stdafx.cxx b/plugins/WhoUsesMyFiles/src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/WhoUsesMyFiles/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/WhoUsesMyFiles/src/stdafx.h b/plugins/WhoUsesMyFiles/src/stdafx.h new file mode 100644 index 0000000000..54616999ad --- /dev/null +++ b/plugins/WhoUsesMyFiles/src/stdafx.h @@ -0,0 +1,132 @@ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "resource.h" +#include "Version.h" + +#define MODULENAME "WUMF Plugin" + +#define LIFETIME_MAX 60 +#define LIFETIME_MIN 1 +#define MAX_PATHNAME 512 +#define MAX_USERNAME 512 +#define TIME 500 + +#define POPUPS_ENABLED "1033" +#define DELAY_SEC "1026" +#define DELAY_SET "1049" +#define DELAY_INF "1050" +#define DELAY_DEF "1051" +#define COLOR_SET "1000" +#define COLOR_WIN "1001" +#define COLOR_DEF "1002" +#define COLOR_BACK "1003" +#define COLOR_TEXT "1004" +#define OPT_FILE "1006" +#define LOG_INTO_FILE "1054" +#define LOG_FOLDER "1055" +#define ALERT_FOLDER "1056" +#define LOG_UNC "1057" +#define ALERT_UNC "1058" +#define LOG_COMP "1059" +#define ALERT_COMP "1060" + +#define IDM_SETUP 0x0402 +#define IDM_ABOUT 0x0403 +#define IDM_SHOW 0x0405 +#define IDM_EXIT 0x0404 + +struct WUMF_OPTIONS +{ + BOOL PopupsEnabled; + BOOL UseWinColor; + BOOL UseDefColor; + BOOL SelectColor; + BOOL DelayInf; + BOOL DelayDef; + BOOL DelaySet; + int DelaySec; + + BOOL LogToFile; + BOOL LogFolders; + BOOL AlertFolders; + BOOL LogUNC; + BOOL AlertUNC; + BOOL LogComp; + BOOL AlertComp; + + COLORREF ColorText; + COLORREF ColorBack; + + TCHAR LogFile[255]; +}; + +struct Wumf +{ + DWORD dwID; + TCHAR szID[10], szPerm[10]; + LPTSTR szUser; + LPTSTR szPath; + LPTSTR szComp; + LPTSTR szUNC; + DWORD dwSess; + DWORD dwLocks; + DWORD dwAttr; + DWORD dwPerm; + BOOL mark; + Wumf *next; +}; + +typedef Wumf *PWumf; + +PWumf new_wumf( + DWORD dwID, + LPTSTR szUser, + LPTSTR szPath, + LPTSTR szComp, + LPTSTR szUNC, + DWORD szSess, + DWORD dwPerm, + DWORD dwAttr); + +BOOL add_cell (PWumf* l, PWumf w); +BOOL del_cell (PWumf* l, PWumf w); +BOOL cpy_cell (PWumf* l, PWumf w); +PWumf fnd_cell (PWumf* l, DWORD dwID); +PWumf cpy_list (PWumf* l); +BOOL del_all (PWumf* l); +void mark_all (PWumf* l, BOOL mark); +BOOL del_marked(PWumf* l); + +extern WUMF_OPTIONS WumfOptions; +extern HINSTANCE hInst; +extern HANDLE hLogger; +static HANDLE hWumfBut; +extern PWumf list; + +void FreeAll(); +VOID CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD); +INT_PTR CALLBACK ConnDlgProc(HWND, UINT, WPARAM, LPARAM); + +void ShowThePopup(PWumf w, LPTSTR, LPTSTR); +void ShowWumfPopup(PWumf w); + +void process_session(SESSION_INFO_1 s_info); +void process_file(SESSION_INFO_1 s_info, FILE_INFO_3 f_info); +void printError(DWORD res); + +#define msg(X) MessageBox(NULL, X, _T("WUMF"), MB_OK|MB_ICONSTOP) +#define MS_WUMF_SWITCHPOPUP "WUMF/SwitchPopup" +#define MS_WUMF_CONNECTIONSSHOW "WUMF/ShowConnections" diff --git a/plugins/WhoUsesMyFiles/src/wumf.cpp b/plugins/WhoUsesMyFiles/src/wumf.cpp index cf9999d83d..de316fd2f9 100644 --- a/plugins/WhoUsesMyFiles/src/wumf.cpp +++ b/plugins/WhoUsesMyFiles/src/wumf.cpp @@ -1,4 +1,4 @@ -#include "wumf.h" +#include "stdafx.h" #define MAX_CHARS 4096 #define WS_WINDOW_STYLE WS_OVERLAPPED diff --git a/plugins/WhoUsesMyFiles/src/wumf.h b/plugins/WhoUsesMyFiles/src/wumf.h deleted file mode 100644 index e0707f8481..0000000000 --- a/plugins/WhoUsesMyFiles/src/wumf.h +++ /dev/null @@ -1,134 +0,0 @@ -#define _CRT_SECURE_NO_WARNINGS - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "resource.h" -#include "Version.h" - -#define MODULENAME "WUMF Plugin" - -#define LIFETIME_MAX 60 -#define LIFETIME_MIN 1 -#define MAX_PATHNAME 512 -#define MAX_USERNAME 512 -#define TIME 500 - -#define POPUPS_ENABLED "1033" -#define DELAY_SEC "1026" -#define DELAY_SET "1049" -#define DELAY_INF "1050" -#define DELAY_DEF "1051" -#define COLOR_SET "1000" -#define COLOR_WIN "1001" -#define COLOR_DEF "1002" -#define COLOR_BACK "1003" -#define COLOR_TEXT "1004" -#define OPT_FILE "1006" -#define LOG_INTO_FILE "1054" -#define LOG_FOLDER "1055" -#define ALERT_FOLDER "1056" -#define LOG_UNC "1057" -#define ALERT_UNC "1058" -#define LOG_COMP "1059" -#define ALERT_COMP "1060" - -#define IDM_SETUP 0x0402 -#define IDM_ABOUT 0x0403 -#define IDM_SHOW 0x0405 -#define IDM_EXIT 0x0404 - -struct WUMF_OPTIONS -{ - BOOL PopupsEnabled; - BOOL UseWinColor; - BOOL UseDefColor; - BOOL SelectColor; - BOOL DelayInf; - BOOL DelayDef; - BOOL DelaySet; - int DelaySec; - - BOOL LogToFile; - BOOL LogFolders; - BOOL AlertFolders; - BOOL LogUNC; - BOOL AlertUNC; - BOOL LogComp; - BOOL AlertComp; - - COLORREF ColorText; - COLORREF ColorBack; - - TCHAR LogFile[255]; -}; - -struct Wumf -{ - DWORD dwID; - TCHAR szID[10], szPerm[10]; - LPTSTR szUser; - LPTSTR szPath; - LPTSTR szComp; - LPTSTR szUNC; - DWORD dwSess; - DWORD dwLocks; - DWORD dwAttr; - DWORD dwPerm; - BOOL mark; - Wumf *next; -}; - -typedef Wumf *PWumf; - -PWumf new_wumf( - DWORD dwID, - LPTSTR szUser, - LPTSTR szPath, - LPTSTR szComp, - LPTSTR szUNC, - DWORD szSess, - DWORD dwPerm, - DWORD dwAttr); - -BOOL add_cell (PWumf* l, PWumf w); -BOOL del_cell (PWumf* l, PWumf w); -BOOL cpy_cell (PWumf* l, PWumf w); -PWumf fnd_cell (PWumf* l, DWORD dwID); -PWumf cpy_list (PWumf* l); -BOOL del_all (PWumf* l); -void mark_all (PWumf* l, BOOL mark); -BOOL del_marked(PWumf* l); - -extern WUMF_OPTIONS WumfOptions; -extern HINSTANCE hInst; -extern HANDLE hLogger; -static HANDLE hWumfBut; -extern PWumf list; - -void FreeAll(); -VOID CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD); -INT_PTR CALLBACK ConnDlgProc(HWND, UINT, WPARAM, LPARAM); - -void ShowThePopup(PWumf w, LPTSTR, LPTSTR); -void ShowWumfPopup(PWumf w); - -void process_session(SESSION_INFO_1 s_info); -void process_file(SESSION_INFO_1 s_info, FILE_INFO_3 f_info); -void printError(DWORD res); - -#define msg(X) MessageBox(NULL, X, _T("WUMF"), MB_OK|MB_ICONSTOP) -#define MS_WUMF_SWITCHPOPUP "WUMF/SwitchPopup" -#define MS_WUMF_CONNECTIONSSHOW "WUMF/ShowConnections" diff --git a/plugins/WhoUsesMyFiles/src/wumfplug.cpp b/plugins/WhoUsesMyFiles/src/wumfplug.cpp index 0bd9066d35..8c023af4eb 100644 --- a/plugins/WhoUsesMyFiles/src/wumfplug.cpp +++ b/plugins/WhoUsesMyFiles/src/wumfplug.cpp @@ -1,4 +1,4 @@ -#include "wumf.h" +#include "stdafx.h" HINSTANCE hInst; WUMF_OPTIONS WumfOptions = { 0 }; diff --git a/plugins/WhoUsesMyFiles/wumf.vcxproj b/plugins/WhoUsesMyFiles/wumf.vcxproj new file mode 100644 index 0000000000..c5a84c6e49 --- /dev/null +++ b/plugins/WhoUsesMyFiles/wumf.vcxproj @@ -0,0 +1,28 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {F29CCB9B-79CF-4341-AA05-3626A036D3E3} + WhoUsesMyFiles + + + + + \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf.vcxproj.filters b/plugins/WhoUsesMyFiles/wumf.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/WhoUsesMyFiles/wumf.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_10.vcxproj b/plugins/WhoUsesMyFiles/wumf_10.vcxproj deleted file mode 100644 index 45eb71fe7f..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_10.vcxproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F29CCB9B-79CF-4341-AA05-3626A036D3E3} - WhoUsesMyFiles - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - - - - - - - - - - - - - - - - - - - <_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 - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin10\lib - netapi32.lib;%(AdditionalDependencies) - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin10\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - - Create - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_10.vcxproj.filters b/plugins/WhoUsesMyFiles/wumf_10.vcxproj.filters deleted file mode 100644 index 1584893c5a..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_10.vcxproj.filters +++ /dev/null @@ -1,61 +0,0 @@ - - - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_12.vcxproj b/plugins/WhoUsesMyFiles/wumf_12.vcxproj deleted file mode 100644 index 3fab9197a8..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_12.vcxproj +++ /dev/null @@ -1,204 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F29CCB9B-79CF-4341-AA05-3626A036D3E3} - WhoUsesMyFiles - - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - 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 - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin12\lib - netapi32.lib;%(AdditionalDependencies) - false - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin12\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin12\lib - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin12\lib - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - - Create - - - - - - - - \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_12.vcxproj.filters b/plugins/WhoUsesMyFiles/wumf_12.vcxproj.filters deleted file mode 100644 index 18a9a28b71..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_12.vcxproj.filters +++ /dev/null @@ -1,50 +0,0 @@ - - - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_14.vcxproj b/plugins/WhoUsesMyFiles/wumf_14.vcxproj deleted file mode 100644 index 16c0346939..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_14.vcxproj +++ /dev/null @@ -1,204 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F29CCB9B-79CF-4341-AA05-3626A036D3E3} - WhoUsesMyFiles - - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - 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 - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin14\lib - netapi32.lib;%(AdditionalDependencies) - false - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin14\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin14\lib - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - Level3 - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - Full - OnlyExplicitInline - Size - false - Use - wumf.h - - - netapi32.lib;%(AdditionalDependencies) - true - Windows - true - true - $(IntDir)$(TargetName).lib - false - $(ProfileDir)..\..\bin14\lib - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - - Create - - - - - - - - \ No newline at end of file diff --git a/plugins/WhoUsesMyFiles/wumf_14.vcxproj.filters b/plugins/WhoUsesMyFiles/wumf_14.vcxproj.filters deleted file mode 100644 index 18a9a28b71..0000000000 --- a/plugins/WhoUsesMyFiles/wumf_14.vcxproj.filters +++ /dev/null @@ -1,50 +0,0 @@ - - - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file -- cgit v1.2.3