diff options
author | George Hazan <george.hazan@gmail.com> | 2013-11-16 19:14:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-11-16 19:14:28 +0000 |
commit | ce86e38c445fee4828922ae33241be9092565050 (patch) | |
tree | 227f00f4e05c75e662a7d42a3c65bc55536adcd5 /include | |
parent | dbd122ff00b5c85e6651a5d542dbee445b1c6e23 (diff) |
DBVTF_DENYUNICODE moved to the proper header
git-svn-id: http://svn.miranda-ng.org/main/trunk@6925 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_core.h | 1 | ||||
-rw-r--r-- | include/m_database.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/m_core.h b/include/m_core.h index 5357bc79b1..8902bcd9f9 100644 --- a/include/m_core.h +++ b/include/m_core.h @@ -62,7 +62,6 @@ MIR_CORE_DLL(LPCTSTR) CmdLine_GetOption(LPCTSTR ptszParameter); #define DBVT_TCHAR DBVT_ASCIIZ
#endif
#define DBVTF_VARIABLELENGTH 0x80
-#define DBVTF_DENYUNICODE 0x10000
typedef struct {
BYTE type;
union {
diff --git a/include/m_database.h b/include/m_database.h index 0706c95b0a..828037353f 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -306,6 +306,9 @@ suppress Unicode part of event in answer, add DBVTF_DENYUNICODE to this field. Function returns a pointer to a string in the required format.
This string should be freed by a call of mir_free
*/
+
+#define DBVTF_DENYUNICODE 0x10000
+
typedef struct {
DBEVENTINFO* dbei;
int datatype;
|