summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/dbevent.cpp
blob: 7d3d0afaf73ae346362e130306ab8133bc71667d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "commonheaders.h"


void HistoryLog(HCONTACT hContact, LPCSTR szText)
{
	DBEVENTINFO dbei = { sizeof(dbei) };
	dbei.szModule = GetContactProto(hContact);
	dbei.flags = DBEF_SENT|DBEF_READ;
	dbei.timestamp = time(NULL);
	dbei.eventType = EVENTTYPE_MESSAGE;
	dbei.cbBlob = (int)strlen(szText) + 1;
	dbei.pBlob = (PBYTE)szText;
	db_event_add(0, &dbei);
}


// EOF