summaryrefslogtreecommitdiff
path: root/plugins/MirandaNGHistoryToDB/m_historytodb.inc
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirandaNGHistoryToDB/m_historytodb.inc')
-rw-r--r--plugins/MirandaNGHistoryToDB/m_historytodb.inc40
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/MirandaNGHistoryToDB/m_historytodb.inc b/plugins/MirandaNGHistoryToDB/m_historytodb.inc
new file mode 100644
index 0000000000..07aa224029
--- /dev/null
+++ b/plugins/MirandaNGHistoryToDB/m_historytodb.inc
@@ -0,0 +1,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}