summaryrefslogtreecommitdiff
path: root/plugins/MirandaNGHistoryToDB/m_historytodb.inc
blob: 07aa22402900436aaf735581f44a8e762588d989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ ############################################################################ }
{ #                                                                          # }
{ #  MirandaNG HistoryToDB Plugin v2.4                                       # }
{ #                                                                          # }
{ #  License: GPLv3                                                          # }
{ #                                                                          # }
{ #  Author: Grigorev Michael (icq: 161867489, email: sleuthhound@gmail.com) # }
{ #                                                                          # }
{ ############################################################################ }

{$IFNDEF M_HISTORYTODB}
{$DEFINE M_HISTORYTODB}

const

  // MS_MHTD_SHOWHISTORY
  // (supported from 2.4.0)
  // Open history
  // wParam - zero
  // lParam - zero
  // Return - 0
  MS_MHTD_SHOWHISTORY = 'MirandaNGHistoryToDB/ShowHistory';

  // MS_MHTD_SHOWCONTACTHISTORY
  // (supported from 2.4.0)
  // Open contact history
  // wParam - hContact
  // lParam - zero
  // Return - 0
  MS_MHTD_SHOWCONTACTHISTORY = 'MirandaNGHistoryToDB/ShowContactHistory';

  // MS_MHTD_GETVERSION
  // (supported from 2.4.0)
  // Get current MirandaNGHistoryToDB version
  // wParam - zero
  // lParam - zero
  // Return - current version, via PLUGIN_MAKE_VERSION macro
  MS_MHTD_GETVERSION = 'MirandaNGHistoryToDB/GetVersion';

{$ENDIF}