diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 18:54:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 18:54:33 +0000 |
commit | 1e2b37b3408c3b732e221aadbf92edc13a77005b (patch) | |
tree | a5c205861dadc6c805c37172be3d98893d7d98e3 /plugins/StopSpamMod/src | |
parent | d6dd9e2ed44526bbf9fc51f3c3e466730da322ae (diff) |
stopspam_mod: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod/src')
-rwxr-xr-x | plugins/StopSpamMod/src/eventhooker.cpp | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/init.cpp | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/StopSpamMod/src/stdafx.cxx (renamed from plugins/StopSpamMod/src/stdafx.cpp) | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/stdafx.h (renamed from plugins/StopSpamMod/src/headers.h) | 4 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/stopspam.cpp | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/utilities.cpp | 2 |
7 files changed, 7 insertions, 9 deletions
diff --git a/plugins/StopSpamMod/src/eventhooker.cpp b/plugins/StopSpamMod/src/eventhooker.cpp index f127e0c1f0..e93e4169be 100755 --- a/plugins/StopSpamMod/src/eventhooker.cpp +++ b/plugins/StopSpamMod/src/eventhooker.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "headers.h"
+#include "stdafx.h"
namespace miranda { diff --git a/plugins/StopSpamMod/src/init.cpp b/plugins/StopSpamMod/src/init.cpp index 056f226816..78aeea2420 100755 --- a/plugins/StopSpamMod/src/init.cpp +++ b/plugins/StopSpamMod/src/init.cpp @@ -15,7 +15,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "headers.h"
+#include "stdafx.h"
BOOL gbDosServiceExist = 0;
BOOL gbVarsServiceExist = 0;
diff --git a/plugins/StopSpamMod/src/options.cpp b/plugins/StopSpamMod/src/options.cpp index e26d2749a4..5b05c9696b 100755 --- a/plugins/StopSpamMod/src/options.cpp +++ b/plugins/StopSpamMod/src/options.cpp @@ -15,7 +15,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "headers.h"
+#include "stdafx.h"
int CreateCListGroup(TCHAR* szGroupName);
diff --git a/plugins/StopSpamMod/src/stdafx.cpp b/plugins/StopSpamMod/src/stdafx.cxx index 7e0216078c..6fb37564b7 100644 --- a/plugins/StopSpamMod/src/stdafx.cpp +++ b/plugins/StopSpamMod/src/stdafx.cxx @@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "headers.h"
\ No newline at end of file +#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/StopSpamMod/src/headers.h b/plugins/StopSpamMod/src/stdafx.h index 29b48d043d..15c247ada0 100755 --- a/plugins/StopSpamMod/src/headers.h +++ b/plugins/StopSpamMod/src/stdafx.h @@ -1,5 +1,3 @@ -#define _CRT_SECURE_NO_WARNINGS - #include <windows.h> using namespace std; @@ -33,7 +31,7 @@ using namespace std; #include "version.h" #include "resource.h" #include "utilities.h" -#include "utf8.h" +#include "include\utf8.h" extern HINSTANCE hInst; extern HANDLE hStopSpamLogDirH; diff --git a/plugins/StopSpamMod/src/stopspam.cpp b/plugins/StopSpamMod/src/stopspam.cpp index 8d18c14759..e193ba91fc 100755 --- a/plugins/StopSpamMod/src/stopspam.cpp +++ b/plugins/StopSpamMod/src/stopspam.cpp @@ -16,7 +16,7 @@ */ -#include "headers.h" +#include "stdafx.h" MIRANDA_HOOK_EVENT(ME_DB_CONTACT_ADDED, w, l) { diff --git a/plugins/StopSpamMod/src/utilities.cpp b/plugins/StopSpamMod/src/utilities.cpp index 804854bce6..84003bde49 100755 --- a/plugins/StopSpamMod/src/utilities.cpp +++ b/plugins/StopSpamMod/src/utilities.cpp @@ -16,7 +16,7 @@ */
-#include "headers.h"
+#include "stdafx.h"
tstring DBGetContactSettingStringPAN(MCONTACT hContact, char const * szModule, char const * szSetting, tstring errorValue)
{
|