summaryrefslogtreecommitdiff
path: root/include/delphi
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2014-01-22 14:14:48 +0000
committerAlexey Kulakov <panda75@bk.ru>2014-01-22 14:14:48 +0000
commit8963ae9891a77ecffc482d059d22e03a2a1b7961 (patch)
treef9470d04e926556bcedfa6da97af4ac2a950dd16 /include/delphi
parentb5fe138f83cff589109d931689e897779feb9b70 (diff)
small and unneded but update (for sync)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7825 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r--include/delphi/m_database.inc3
-rw-r--r--include/delphi/m_hotkeys.inc4
-rw-r--r--include/delphi/m_utils.inc13
3 files changed, 6 insertions, 14 deletions
diff --git a/include/delphi/m_database.inc b/include/delphi/m_database.inc
index ea59b1d674..ce6b56ac6e 100644
--- a/include/delphi/m_database.inc
+++ b/include/delphi/m_database.inc
@@ -341,9 +341,6 @@ const
the database module uses wParam as the lParam cookie value and the lParam
value given here is the function pointer -- this is not safe
to use before v0.1.2.1 because I don't know if this was done in v0.1.2.1-
-
- prior to v0.1.2.1 you can not pass a value to the enumeration because
- of a bug -- which is fixed, but hey :) -- [sam]
}
type
TDBMODULEENUMPROC = function(const szModule: PAnsiChar; ofsModuleName: DWORD; lParam: LPARAM): int; cdecl;
diff --git a/include/delphi/m_hotkeys.inc b/include/delphi/m_hotkeys.inc
index e838a95118..61582dd4fe 100644
--- a/include/delphi/m_hotkeys.inc
+++ b/include/delphi/m_hotkeys.inc
@@ -1,8 +1,8 @@
{
Miranda IM: the free IM client for Microsoft* Windows*
-Copyright 2000-2007 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
+Copyright 2000-2007 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
diff --git a/include/delphi/m_utils.inc b/include/delphi/m_utils.inc
index 3e3e5ecce2..8abaf313dc 100644
--- a/include/delphi/m_utils.inc
+++ b/include/delphi/m_utils.inc
@@ -159,14 +159,14 @@ const
}
MS_UTILS_GETCOUNTRYLIST:PAnsiChar = 'Utils/GetCountryList';
- // see WindowList_* functions below
+
+//******************************* Window lists *******************************
{
wParam : 0
lParam : 0
Affect : Allocate a window list
Returns: A handle to the new window list
- Version: v0.1.0.1+
}
MS_UTILS_ALLOCWINDOWLIST:PAnsiChar = 'Utils/AllocWindowList';
@@ -175,7 +175,6 @@ const
lParam : Pointer to an initalised TWINDOWLISTENTRY structure
Affect : Add a window to a given window list handle
Returns: 0 on success, [non zero] on failure
- Version: v0.1.0.1+
}
MS_UTILS_ADDTOWINDOWLIST:PAnsiChar = 'Utils/AddToWindowList';
@@ -184,7 +183,6 @@ const
lParam : Window handle to remove
Affect : Remove a window from the specified window list
Returns: 0 on success, [non zero] on failure
- Version: v0.1.0.1+
}
MS_UTILS_REMOVEFROMWINDOWLIST:PAnsiChar = 'Utils/RemoveFromWindowList';
@@ -193,26 +191,23 @@ const
lParam : Handle to a HCONTACT to find in the window list
Affect : Find a window handle given the hContact
Returns: The found window handle or NULL(0) on failure
- Version: v0.1.0.1+
}
MS_UTILS_FINDWINDOWINLIST:PAnsiChar = 'Utils/FindWindowInList';
{
wParam : Handle to window list
lParam : Pointer to TMSG (initalised with what to broadcast)
- Affect : Broadcast a message to all windows in a list, see notes
+ Affect : sends a message to all windows in a list using SendMessage
Returns: 0 on success, [non zero] on failure
Notes : only TMSG.Message, .wParam, .lParam are used
- Version: v0.1.0.1+
}
MS_UTILS_BROADCASTTOWINDOWLIST:PAnsiChar = 'Utils/BroadcastToWindowList';
{
- Version: 0.3.0.0+
Inline helper: WindowList_BroadcastAsync
wParam : Handle to window list
lParam : Pointer to TMSG (initalised with what to broadcast)
- Affect : Broadcast a message to all windows in the given list using PostMessage()
+ Affect : Sends a message to all windows in a list using PostMessage
Returns: 0 on success, nonzero on failure, this service does not fail,
even if PostMessage() fails for whatever reason
}