diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-22 17:53:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-22 17:53:20 +0000 |
commit | 59b6fb0fe20c274743fbd1b9742be94b1e5134a4 (patch) | |
tree | 1fe68cf72ab221fbca0f24b36b35f5c1087a9450 /include/delphi/m_extraicons.inc | |
parent | 36818c9c84cce676b9ec6533807b7a33e03902a0 (diff) |
- extra icons services converted into functions;
- more Kill* functions exported;
git-svn-id: http://svn.miranda-ng.org/main/trunk@14635 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi/m_extraicons.inc')
-rw-r--r-- | include/delphi/m_extraicons.inc | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/include/delphi/m_extraicons.inc b/include/delphi/m_extraicons.inc index 577585f953..e247599761 100644 --- a/include/delphi/m_extraicons.inc +++ b/include/delphi/m_extraicons.inc @@ -81,38 +81,4 @@ type onClickParam:LPARAM;
end;
-const
-// Register an extra icon
-// wParam = (EXTRAICON_INFO *) Extra icon info
-// lParam = 0
-// Return: (HANDLE) id of extra icon on success, 0 on error
- MS_EXTRAICON_REGISTER:PAnsiChar = 'ExtraIcon/Register';
-
-type
- TEXTRAICON = record
- cbSize :int;
- hExtraIcon:THANDLE; // Value returned by MS_EXTRAICON_REGISTER
- hContact :TMCONTACT; // Contact to set the extra icon
- // The icon to be set. This depends on the type of the extra icon:
- case boolean of
- false:(hImage :THANDLE); // Value returned by MS_CLIST_EXTRA_ADD_ICON (if EXTRAICON_TYPE_CALLBACK)
- // or the icolib icon handle (if EXTRAICON_TYPE_ICOLIB)
- true :(icoName:PAnsiChar); // Name of the icon registered with icolib (if EXTRAICON_TYPE_ICOLIB)
- end;
-
-const
-{
- Set an extra icon icon
- wParam = (EXTRAICON *) Extra icon
- Return: 0 on success
-}
- MS_EXTRAICON_SET_ICON:PAnsiChar = 'ExtraIcon/SetIcon';
-
-{
- Set an extra icon by icolib icon's name
- wParam = (EXTRAICON *) Extra icon
- Return: 0 on success
-}
- MS_EXTRAICON_SET_ICON_BY_NAME:PAnsiChar = 'ExtraIcon/SetIconByName';
-
{$ENDIF}
|