1.5. Event

Members:

array(
  'signature' => DWORD, // struct signature (0x45DECADE)
  'ofsPrev' => DWORD, // offset of the previous event
  'ofsNext' => DWORD, // offset of the next event
  'ofsModule' => DWORD, // offset of the module
  'timestamp' => DWORD, // timestamp of the event
  'flags' => DWORD, // the flag of the event
  'eventType' => WORD, // module-defined event type
  'cbBlob' => DWORD // length of the blob
  /************************************************/
  'blob' => BYTE* // the blob (module-defined formatting)
)

Constants:

class MimDbHandler {
  const DB_EVENT_FLAG_SENT = 2;
  const DB_EVENT_FLAG_READ = 4;
  const DB_EVENT_FLAG_RTL = 8;
 
  const DB_EVENT_TYPE_MESSAGE = 0;
  const DB_EVENT_TYPE_URL = 1;
  const DB_EVENT_TYPE_CONTACTS = 2;
  const DB_EVENT_TYPE_ADDED = 1000;
  const DB_EVENT_TYPE_AUTHREQUEST = 1001;
  const DB_EVENT_TYPE_FILE = 1002;
}