From a2e911b7ad90a143cd01eacee3f526f775b3e613 Mon Sep 17 00:00:00 2001
From: Kirill Volinsky <mataes2007@gmail.com>
Date: Sat, 25 Jul 2015 15:12:48 +0000
Subject: mobilestate: common project

git-svn-id: http://svn.miranda-ng.org/main/trunk@14692 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/MobileState/src/commonheaders.h | 38 ---------------------------------
 plugins/MobileState/src/main.cpp        |  2 +-
 plugins/MobileState/src/stdafx.cpp      | 18 ----------------
 plugins/MobileState/src/stdafx.cxx      | 18 ++++++++++++++++
 plugins/MobileState/src/stdafx.h        | 38 +++++++++++++++++++++++++++++++++
 5 files changed, 57 insertions(+), 57 deletions(-)
 delete mode 100644 plugins/MobileState/src/commonheaders.h
 delete mode 100644 plugins/MobileState/src/stdafx.cpp
 create mode 100644 plugins/MobileState/src/stdafx.cxx
 create mode 100644 plugins/MobileState/src/stdafx.h

(limited to 'plugins/MobileState/src')

diff --git a/plugins/MobileState/src/commonheaders.h b/plugins/MobileState/src/commonheaders.h
deleted file mode 100644
index 432aaf3911..0000000000
--- a/plugins/MobileState/src/commonheaders.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
-   Mobile State plugin for Miranda NG (www.miranda-ng.org)
-   (c) 2012-15 by Robert P�sel
-
-   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
-   */
-
-#pragma once
-
-#include <windows.h>
-#include <malloc.h>
-
-// Miranda API headers
-#include <newpluginapi.h>
-#include <m_database.h>
-#include <m_protocols.h>
-#include <m_langpack.h>
-#include <m_icolib.h>
-#include <m_extraicons.h>
-#include <win2k.h>
-
-#include "resource.h"
-#include "Version.h"
-#include "clients.h"
-
-#define MODULENAME "MobileState"
diff --git a/plugins/MobileState/src/main.cpp b/plugins/MobileState/src/main.cpp
index e39187cad1..53c7f0e2af 100644
--- a/plugins/MobileState/src/main.cpp
+++ b/plugins/MobileState/src/main.cpp
@@ -17,7 +17,7 @@
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    */
 
-#include "commonheaders.h"
+#include "stdafx.h"
 
 HINSTANCE g_hInst;
 int hLangpack;
diff --git a/plugins/MobileState/src/stdafx.cpp b/plugins/MobileState/src/stdafx.cpp
deleted file mode 100644
index 048b14e9d2..0000000000
--- a/plugins/MobileState/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 <http://www.gnu.org/licenses/>.
-*/
-
-#include "commonheaders.h"
\ No newline at end of file
diff --git a/plugins/MobileState/src/stdafx.cxx b/plugins/MobileState/src/stdafx.cxx
new file mode 100644
index 0000000000..6fb37564b7
--- /dev/null
+++ b/plugins/MobileState/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 <http://www.gnu.org/licenses/>.
+*/
+
+#include "stdafx.h"
\ No newline at end of file
diff --git a/plugins/MobileState/src/stdafx.h b/plugins/MobileState/src/stdafx.h
new file mode 100644
index 0000000000..432aaf3911
--- /dev/null
+++ b/plugins/MobileState/src/stdafx.h
@@ -0,0 +1,38 @@
+/*
+   Mobile State plugin for Miranda NG (www.miranda-ng.org)
+   (c) 2012-15 by Robert P�sel
+
+   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
+   */
+
+#pragma once
+
+#include <windows.h>
+#include <malloc.h>
+
+// Miranda API headers
+#include <newpluginapi.h>
+#include <m_database.h>
+#include <m_protocols.h>
+#include <m_langpack.h>
+#include <m_icolib.h>
+#include <m_extraicons.h>
+#include <win2k.h>
+
+#include "resource.h"
+#include "Version.h"
+#include "clients.h"
+
+#define MODULENAME "MobileState"
-- 
cgit v1.2.3