diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-01 20:35:38 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-01 20:35:38 +0000 |
commit | e4d203d2f4c2fd58e83460421ba704b04f2bcdce (patch) | |
tree | b8dc653cc6358d9d40e15072d59e6fccffbd45fa /plugins/UserInfoEx/src/mir_db.h | |
parent | 8ac50e588c3497c7616647d6b167be814677330e (diff) |
\0 removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11718 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/mir_db.h')
-rw-r--r-- | plugins/UserInfoEx/src/mir_db.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/mir_db.h b/plugins/UserInfoEx/src/mir_db.h index 93df0f2a36..a11d01dca1 100644 --- a/plugins/UserInfoEx/src/mir_db.h +++ b/plugins/UserInfoEx/src/mir_db.h @@ -28,7 +28,10 @@ namespace DB { * or modify contacts in the database.
**/
namespace Contact {
- LPTSTR DisplayName(MCONTACT hContact);
+ __forceinline LPTSTR DisplayName(MCONTACT hContact)
+ { return pcli->pfnGetContactDisplayName(hContact, 0);
+ }
+
LPSTR Proto(MCONTACT hContact);
INT_PTR GetCount();
|