summaryrefslogtreecommitdiff
path: root/plugins/Variables/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-08-01 20:28:18 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-08-01 20:28:18 +0000
commitad5e273a04e89a45d41c87a6a21c6d6fd937ac43 (patch)
treec704120baf221e5ee7f20e93c40753d65df80ff9 /plugins/Variables/src
parentb36570eeab759b37b50da15f67a2f844357fde1a (diff)
Variables: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14796 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src')
-rw-r--r--plugins/Variables/src/contact.cpp2
-rw-r--r--plugins/Variables/src/enumprocs.cpp2
-rw-r--r--plugins/Variables/src/help.cpp2
-rw-r--r--plugins/Variables/src/lookup3.cpp2
-rw-r--r--plugins/Variables/src/main.cpp2
-rw-r--r--plugins/Variables/src/options.cpp2
-rw-r--r--plugins/Variables/src/parse_alias.cpp2
-rw-r--r--plugins/Variables/src/parse_external.cpp2
-rw-r--r--plugins/Variables/src/parse_inet.cpp2
-rw-r--r--plugins/Variables/src/parse_logic.cpp2
-rw-r--r--plugins/Variables/src/parse_math.cpp2
-rw-r--r--plugins/Variables/src/parse_metacontacts.cpp2
-rw-r--r--plugins/Variables/src/parse_miranda.cpp2
-rw-r--r--plugins/Variables/src/parse_regexp.cpp2
-rw-r--r--plugins/Variables/src/parse_str.cpp2
-rw-r--r--plugins/Variables/src/parse_system.cpp2
-rw-r--r--plugins/Variables/src/parse_variables.cpp2
-rw-r--r--plugins/Variables/src/stdafx.cxx (renamed from plugins/Variables/src/stdafx.cpp)2
-rw-r--r--plugins/Variables/src/stdafx.h (renamed from plugins/Variables/src/variables.h)1
-rw-r--r--plugins/Variables/src/tokenregister.cpp2
-rw-r--r--plugins/Variables/src/variables.cpp2
21 files changed, 20 insertions, 21 deletions
diff --git a/plugins/Variables/src/contact.cpp b/plugins/Variables/src/contact.cpp
index f295c0cea0..f110ab27d9 100644
--- a/plugins/Variables/src/contact.cpp
+++ b/plugins/Variables/src/contact.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
struct _tagType
{
diff --git a/plugins/Variables/src/enumprocs.cpp b/plugins/Variables/src/enumprocs.cpp
index e35accfd0e..71ecd780ac 100644
--- a/plugins/Variables/src/enumprocs.cpp
+++ b/plugins/Variables/src/enumprocs.cpp
@@ -21,7 +21,7 @@
// EnumProc.c
//
-#include "variables.h"
+#include "stdafx.h"
typedef struct {
DWORD dwPID;
diff --git a/plugins/Variables/src/help.cpp b/plugins/Variables/src/help.cpp
index b17d9ddbd9..2077353901 100644
--- a/plugins/Variables/src/help.cpp
+++ b/plugins/Variables/src/help.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
struct HELPDLGDATA
{
diff --git a/plugins/Variables/src/lookup3.cpp b/plugins/Variables/src/lookup3.cpp
index b75c9bbe0c..7f28ed0498 100644
--- a/plugins/Variables/src/lookup3.cpp
+++ b/plugins/Variables/src/lookup3.cpp
@@ -25,7 +25,7 @@ a mix of things, see the comments above hashlittle().
*/
//#define SELF_TEST 1
-#include "variables.h"
+#include "stdafx.h"
typedef unsigned long int uint32; /* unsigned 4-byte quantities */
typedef unsigned short int uint16; /* unsigned 2-byte quantities */
diff --git a/plugins/Variables/src/main.cpp b/plugins/Variables/src/main.cpp
index 449dc65cde..2a561a9b8c 100644
--- a/plugins/Variables/src/main.cpp
+++ b/plugins/Variables/src/main.cpp
@@ -16,7 +16,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 "variables.h"
+#include "stdafx.h"
CLIST_INTERFACE *pcli;
HINSTANCE hInst;
diff --git a/plugins/Variables/src/options.cpp b/plugins/Variables/src/options.cpp
index fa37d39af6..bb381ef238 100644
--- a/plugins/Variables/src/options.cpp
+++ b/plugins/Variables/src/options.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static INT_PTR CALLBACK SetOptsDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
{
diff --git a/plugins/Variables/src/parse_alias.cpp b/plugins/Variables/src/parse_alias.cpp
index 895fb9d50b..c3c3b38282 100644
--- a/plugins/Variables/src/parse_alias.cpp
+++ b/plugins/Variables/src/parse_alias.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
struct ALIASREGISTER
{
diff --git a/plugins/Variables/src/parse_external.cpp b/plugins/Variables/src/parse_external.cpp
index 0580dec0d6..19a0a6de61 100644
--- a/plugins/Variables/src/parse_external.cpp
+++ b/plugins/Variables/src/parse_external.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *getFullWinampTitleText()
{
diff --git a/plugins/Variables/src/parse_inet.cpp b/plugins/Variables/src/parse_inet.cpp
index 881128d753..ff3e07c943 100644
--- a/plugins/Variables/src/parse_inet.cpp
+++ b/plugins/Variables/src/parse_inet.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseUrlEnc(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_logic.cpp b/plugins/Variables/src/parse_logic.cpp
index ee352cfbfa..08bdfa9c6c 100644
--- a/plugins/Variables/src/parse_logic.cpp
+++ b/plugins/Variables/src/parse_logic.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseAnd(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_math.cpp b/plugins/Variables/src/parse_math.cpp
index cfda45bd70..ee7490686a 100644
--- a/plugins/Variables/src/parse_math.cpp
+++ b/plugins/Variables/src/parse_math.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseAdd(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_metacontacts.cpp b/plugins/Variables/src/parse_metacontacts.cpp
index 06e26ce5ea..f8a965b81c 100644
--- a/plugins/Variables/src/parse_metacontacts.cpp
+++ b/plugins/Variables/src/parse_metacontacts.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseGetParent(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_miranda.cpp b/plugins/Variables/src/parse_miranda.cpp
index efbd3f5d86..1877bfcf3f 100644
--- a/plugins/Variables/src/parse_miranda.cpp
+++ b/plugins/Variables/src/parse_miranda.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR* parseCodeToStatus(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_regexp.cpp b/plugins/Variables/src/parse_regexp.cpp
index 5a337ae54e..fb5366329b 100644
--- a/plugins/Variables/src/parse_regexp.cpp
+++ b/plugins/Variables/src/parse_regexp.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
/*
pattern, subject
diff --git a/plugins/Variables/src/parse_str.cpp b/plugins/Variables/src/parse_str.cpp
index f0f3d68822..27e6d324f1 100644
--- a/plugins/Variables/src/parse_str.cpp
+++ b/plugins/Variables/src/parse_str.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseCaps(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_system.cpp b/plugins/Variables/src/parse_system.cpp
index 34f3c90871..4414a8b860 100644
--- a/plugins/Variables/src/parse_system.cpp
+++ b/plugins/Variables/src/parse_system.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
static TCHAR *parseComputerName(ARGUMENTSINFO *ai)
{
diff --git a/plugins/Variables/src/parse_variables.cpp b/plugins/Variables/src/parse_variables.cpp
index dc7f95552e..d15e108817 100644
--- a/plugins/Variables/src/parse_variables.cpp
+++ b/plugins/Variables/src/parse_variables.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
// this is for get and put(s)
static mir_cs csVarRegister;
diff --git a/plugins/Variables/src/stdafx.cpp b/plugins/Variables/src/stdafx.cxx
index 53bca828f9..6fb37564b7 100644
--- a/plugins/Variables/src/stdafx.cpp
+++ b/plugins/Variables/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 "variables.h" \ No newline at end of file
+#include "stdafx.h" \ No newline at end of file
diff --git a/plugins/Variables/src/variables.h b/plugins/Variables/src/stdafx.h
index 49b4bbba01..7948708b2d 100644
--- a/plugins/Variables/src/variables.h
+++ b/plugins/Variables/src/stdafx.h
@@ -18,7 +18,6 @@
*/
#define _CRT_NON_CONFORMING_SWPRINTFS
-#define _CRT_SECURE_NO_WARNINGS
#include <malloc.h>
#include <windows.h>
diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp
index 7998c6dbb2..3cf79cb4f1 100644
--- a/plugins/Variables/src/tokenregister.cpp
+++ b/plugins/Variables/src/tokenregister.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
struct TokenRegisterEntry
{
diff --git a/plugins/Variables/src/variables.cpp b/plugins/Variables/src/variables.cpp
index 3c5652f6f1..a481702145 100644
--- a/plugins/Variables/src/variables.cpp
+++ b/plugins/Variables/src/variables.cpp
@@ -17,7 +17,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "variables.h"
+#include "stdafx.h"
/* some handles */
static HANDLE