diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 18:54:18 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-10-24 18:54:18 +0000 |
commit | aa6b2f434c204d6da1906f381c418bd8f0bca163 (patch) | |
tree | 4771c946f6db36ddb80842362fb1f7ec37deda27 /protocols/Steam/src/steam_utils.cpp | |
parent | 910486f051234fb8e24426152af98ab90319aa16 (diff) |
Steam:
- remove custom db event adding
- add charset utf-8 to some of requests
git-svn-id: http://svn.miranda-ng.org/main/trunk@15607 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_utils.cpp')
-rw-r--r-- | protocols/Steam/src/steam_utils.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/protocols/Steam/src/steam_utils.cpp b/protocols/Steam/src/steam_utils.cpp index fa43e141b2..33ac3f8bde 100644 --- a/protocols/Steam/src/steam_utils.cpp +++ b/protocols/Steam/src/steam_utils.cpp @@ -159,19 +159,6 @@ exit: return 0;
}
-MEVENT CSteamProto::AddDBEvent(MCONTACT hContact, WORD type, DWORD timestamp, DWORD flags, DWORD cbBlob, PBYTE pBlob)
-{
- DBEVENTINFO dbei = { sizeof(dbei) };
- dbei.szModule = m_szModuleName;
- dbei.timestamp = timestamp;
- dbei.eventType = type;
- dbei.cbBlob = cbBlob;
- dbei.pBlob = pBlob;
- dbei.flags = flags;
-
- return db_event_add(hContact, &dbei);
-}
-
void CSteamProto::ShowNotification(const TCHAR *caption, const wchar_t *message, int flags, MCONTACT hContact)
{
if (Miranda_Terminated())
|