diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 18:51:08 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 18:51:08 +0000 |
commit | 1d14eafc4f0cf923e5bc835ae5c09c4b75c76b85 (patch) | |
tree | c1f06863e61fd94703ec17de33b0330ac8ea1293 /plugins/ContactsPlus/src/stdafx.h | |
parent | f23e7ee1b67f42ad0d17dfde5ec91075205304a7 (diff) |
ContactsPlus - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ContactsPlus/src/stdafx.h')
-rw-r--r-- | plugins/ContactsPlus/src/stdafx.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/plugins/ContactsPlus/src/stdafx.h b/plugins/ContactsPlus/src/stdafx.h new file mode 100644 index 0000000000..0d52891be5 --- /dev/null +++ b/plugins/ContactsPlus/src/stdafx.h @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------
+// Contacts+ for Miranda Instant Messenger
+// _______________________________________
+//
+// Copyright © 2002 Dominus Procellarum
+// Copyright © 2004-2008 Joe Kucera
+//
+// 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.
+//
+// ---------------------------------------------------------------------------
+
+#include <windows.h>
+#include <commctrl.h>
+#include <malloc.h>
+#include <time.h>
+
+#include "newpluginapi.h"
+#include "m_protosvc.h"
+#include "m_database.h"
+#include "m_langpack.h"
+#include "m_skin.h"
+#include "m_clist.h"
+#include "m_clistint.h"
+#include "m_clc.h"
+#include "m_clui.h"
+#include "m_addcontact.h"
+#include "m_history.h"
+#include "m_userinfo.h"
+#include "m_button.h"
+#include "m_message.h"
+#include "win2k.h"
+
+#include "resource.h"
+#include "Version.h"
+#include "utils.h"
+#include "send.h"
+#include "receive.h"
+
+#define MODULENAME "SendReceiveContacts"
+
+#define MS_CONTACTS_SEND "ContactsTransfer/SendContacts"
+#define MS_CONTACTS_RECEIVE "ContactsTransfer/ReceiveContacts"
|