summaryrefslogtreecommitdiff
path: root/plugins/Boltun/src/boltun.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-04-27 08:58:18 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-04-27 08:58:18 +0000
commit47f4d5c03a16988eab91de5e26218f8e0d35b8b8 (patch)
treeed8bb521a4301dfeea2e918f50830819db524762 /plugins/Boltun/src/boltun.h
parent68a6aa6db2eb165cfbebebc891a41be2f6917f44 (diff)
Boltun common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13194 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Boltun/src/boltun.h')
-rw-r--r--plugins/Boltun/src/boltun.h95
1 files changed, 0 insertions, 95 deletions
diff --git a/plugins/Boltun/src/boltun.h b/plugins/Boltun/src/boltun.h
deleted file mode 100644
index e831eaeb8d..0000000000
--- a/plugins/Boltun/src/boltun.h
+++ /dev/null
@@ -1,95 +0,0 @@
-//***********************************************************
-// Copyright © 2003-2008 Alexander S. Kiselev, Valentin Pavlyuchenko
-//
-// This file is part of Boltun.
-//
-// Boltun 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.
-//
-// Boltun 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 Boltun. If not, see <http://www.gnu.org/licenses/>.
-//
-//***********************************************************
-
-#ifndef _BOLTUN_H
-#define _BOLTUN_H
-
-#define _CRT_SECURE_NO_WARNINGS
-
-#include <windows.h>
-#include <time.h>
-#include <fstream>
-#include <assert.h>
-
-#include <string>
-#include <list>
-
-#include "newpluginapi.h"
-#include "m_clist.h"
-#include "m_system_cpp.h"
-#include "m_database.h"
-#include "m_options.h"
-#include "m_langpack.h"
-
-#include "resource.h"
-#include "version.h"
-#include "config.h"
-#include "actionQueue.h"
-#include "Engine/TalkEngine.h"
-#include "Engine/WordsList.h"
-#include "Engine/UnrecentChooser.h"
-#include "Engine/MyCodeCvt.h"
-#include "Engine/Mind.h"
-
-#define BOLTUN_KEY "Boltun"
-
-//Service names
-#define SERV_CONTACT_AUTO_CHAT "Boltun/ContactAutoChat"
-#define SERV_CONTACT_NOT_TO_CHAT "Boltun/ContactNotToChat"
-#define SERV_CONTACT_START_CHATTING "Boltun/ContactStartChatting"
-
-//Database keys
-#define DB_CONTACT_BOLTUN_NOT_TO_CHAT "BoltunNotToChat"
-#define DB_CONTACT_BOLTUN_AUTO_CHAT "BoltunAutoChat"
-#define DB_CONTACT_WARNED "Warned"
-
-//Plugin group in settings
-#define BOLTUN_GROUP LPGEN("Message sessions")
-
-//Filename depends on UNICODE
-#define DEFAULT_MIND_FILE _T("boltun.mindw")
-
-//===============================================
-// These are strings for translation:
-//===============================================
-
-//Plugin name
-#define BOLTUN_NAME "Boltun"
-
-#define MIND_FILE_DESC LPGENT("Mind Files")
-#define ALL_FILES_DESC LPGENT("All Files")
-
-//UI strings
-#define BOLTUN_AUTO_CHAT LPGEN("Boltun/Auto Chat")
-#define BOLTUN_NOT_TO_CHAT LPGEN("Boltun/Not to Chat")
-#define BOLTUN_START_CHATTING LPGEN("Boltun/Start Chatting")
-
-#define DEFAULT_WARN_TEXT LPGENT("Hello. I'm Boltun! I'll talk to you, while my owner is away. Please write without mistakes!")
-
-// Error messages
-#define BOLTUN_ERROR LPGENT("Boltun Error")
-#define FAILED_TO_LOAD_BASE LPGENT("Failed to load base of remarks. Error at line %d of %s. (Or few lines before).")
-#define FAILED_TO_SAVE_BASE LPGENT("Failed to save base of remarks to %s")
-
-//Settings tab names
-#define TAB_GENERAL LPGEN("General Settings")
-#define TAB_ENGINE LPGEN("Engine Settings")
-
-#endif /*_BOLTUN_H*/