diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 18:27:01 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-23 18:27:01 +0000 |
commit | 9e0c64767759da86499f245083239575d947b5e9 (patch) | |
tree | 97bfd59aec1a7f546711633ddf984478d1cd381c /plugins/Db3x/commonheaders.h | |
parent | b9829197a75ac0a4149c94ad26feb281d59cb199 (diff) |
Db3x:
plusified
git-svn-id: http://svn.miranda-ng.org/main/trunk@582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x/commonheaders.h')
-rw-r--r-- | plugins/Db3x/commonheaders.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/plugins/Db3x/commonheaders.h b/plugins/Db3x/commonheaders.h index cd82b02679..4d31934ec9 100644 --- a/plugins/Db3x/commonheaders.h +++ b/plugins/Db3x/commonheaders.h @@ -37,16 +37,25 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <io.h>
#include <string.h>
#include <direct.h>
-#include "resource.h"
+
#include <newpluginapi.h>
#include <win2k.h>
+#include <m_plugins.h>
#include <m_system.h>
#include <m_database.h>
#include <m_langpack.h>
+
#include "version.h"
+#include "database.h"
+#include "resource.h"
extern PLUGINLINK *pluginLink;
-
+extern HANDLE hDbFile;
+extern CRITICAL_SECTION csDbAccess;
+extern struct DBHeader dbHeader;
+extern HANDLE hCacheHeap;
+extern SortedList lContacts;
+extern char szDbPath[MAX_PATH];
extern struct LIST_INTERFACE li;
#ifdef __GNUC__
@@ -56,3 +65,7 @@ extern struct LIST_INTERFACE li; #endif
#define NEWSTR_ALLOCA(A) (A==NULL)?NULL:strcpy((char*)alloca(strlen(A)+1),A)
+
+#ifndef MODULAR
+void Encrypt(char*msg,BOOL up);
+#endif
\ No newline at end of file |