From 4c358d22027165b6e4680a93f075706781328269 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 5 Oct 2013 17:31:47 +0000 Subject: the very basic skeleton that compiles git-svn-id: http://svn.miranda-ng.org/main/trunk@6351 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/VKontakte/src/main.cpp | 18 ++++++++++++ protocols/VKontakte/src/stdafx.cpp | 18 ++++++++++++ protocols/VKontakte/src/stdafx.h | 60 ++++++++++++++++++++++++++++++++++++++ protocols/VKontakte/src/version.h | 20 +++++++++++++ protocols/VKontakte/src/vk.h | 16 ++++++++++ 5 files changed, 132 insertions(+) create mode 100644 protocols/VKontakte/src/main.cpp create mode 100644 protocols/VKontakte/src/stdafx.cpp create mode 100644 protocols/VKontakte/src/stdafx.h create mode 100644 protocols/VKontakte/src/version.h create mode 100644 protocols/VKontakte/src/vk.h (limited to 'protocols/VKontakte/src') diff --git a/protocols/VKontakte/src/main.cpp b/protocols/VKontakte/src/main.cpp new file mode 100644 index 0000000000..d788c2781d --- /dev/null +++ b/protocols/VKontakte/src/main.cpp @@ -0,0 +1,18 @@ +/* +Copyright (C) 2013 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" diff --git a/protocols/VKontakte/src/stdafx.cpp b/protocols/VKontakte/src/stdafx.cpp new file mode 100644 index 0000000000..d788c2781d --- /dev/null +++ b/protocols/VKontakte/src/stdafx.cpp @@ -0,0 +1,18 @@ +/* +Copyright (C) 2013 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" diff --git a/protocols/VKontakte/src/stdafx.h b/protocols/VKontakte/src/stdafx.h new file mode 100644 index 0000000000..2672a9d5a5 --- /dev/null +++ b/protocols/VKontakte/src/stdafx.h @@ -0,0 +1,60 @@ +/* +Copyright (C) 2013 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 . +*/ + +#pragma once + +#ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista. +#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to target other versions of Windows. +#endif + +#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 "win2k.h" + +#include "vk.h" diff --git a/protocols/VKontakte/src/version.h b/protocols/VKontakte/src/version.h new file mode 100644 index 0000000000..e035ffeb5d --- /dev/null +++ b/protocols/VKontakte/src/version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0 +#define __MINOR_VERSION 0 +#define __RELEASE_NUM 1 +#define __BUILD_NUM 1 + +#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM +#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM + +#define __STRINGIFY_IMPL(x) #x +#define __STRINGIFY(x) __STRINGIFY_IMPL(x) +#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS) + +#define __PLUGIN_NAME "VKontakte" +#define __INTERNAL_NAME "VKontakte" +#define __FILENAME "VKontakte.dll" +#define __DESCRIPTION "VKontakte protocol support for Miranda NG." +#define __AUTHOR "Miranda NG Team" +#define __AUTHOREMAIL "" +#define __AUTHORWEB "http://miranda-ng.org/p/VKontakte/" +#define __COPYRIGHT "© 2013 Miranda NG Team" diff --git a/protocols/VKontakte/src/vk.h b/protocols/VKontakte/src/vk.h new file mode 100644 index 0000000000..6b79f6eac0 --- /dev/null +++ b/protocols/VKontakte/src/vk.h @@ -0,0 +1,16 @@ +/* +Copyright (C) 2013 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 . +*/ -- cgit v1.2.3