diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-10 22:08:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-10 22:08:39 +0000 |
commit | 301a0597925ba74ee1d8f1dc77a48f5b659fbbee (patch) | |
tree | 6af54d74728829bd4a595e040e10e23f3dbbd0d2 /plugins/Db3x | |
parent | e362794bca84f8186225d5a2ae7479709f40ea4b (diff) |
STATIC_PLUGIN : 0x0002 flag added to PLUGININFOEX.flags to mark plugins loaded by the core
git-svn-id: http://svn.miranda-ng.org/main/trunk@3547 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x')
-rw-r--r-- | plugins/Db3x/src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Db3x/src/init.cpp b/plugins/Db3x/src/init.cpp index 7831613ef5..cb0ebf2fd3 100644 --- a/plugins/Db3x/src/init.cpp +++ b/plugins/Db3x/src/init.cpp @@ -35,7 +35,7 @@ static PLUGININFOEX pluginInfo = "ghazan@miranda.im",
"Copyright 2012 Miranda NG project",
"",
- UNICODE_AWARE,
+ UNICODE_AWARE | STATIC_PLUGIN,
{0x1394a3ab, 0x2585, 0x4196, { 0x8f, 0x72, 0xe, 0xae, 0xc2, 0x45, 0xe, 0x11 }} //{1394A3AB-2585-4196-8F72-0EAEC2450E11}
};
@@ -51,7 +51,7 @@ static int makeDatabase(const TCHAR *profile) std::auto_ptr<CDb3x> db(new CDb3x(profile));
if (db->Create() != ERROR_SUCCESS)
return EMKPRF_CREATEFAILED;
-
+
return db->CreateDbHeaders(dbSignature);
}
|