diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-18 21:50:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-18 21:50:38 +0300 |
commit | e3bea6d9c261c87d7f67ecc06392c0d0cd4fe2dc (patch) | |
tree | 4b2380c5a925c7bc13515aef5a16a9324c3c55a6 /include | |
parent | 501fd1fbff6afc11bb0368b82b4a8d9451bee5f3 (diff) |
fixes #1776 (remove MS_URL_SENDURL "SRUrl/SendCommand")
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/interfaces.inc | 1 | ||||
-rw-r--r-- | include/delphi/m_api.pas | 1 | ||||
-rw-r--r-- | include/delphi/m_url.inc | 36 | ||||
-rw-r--r-- | include/m_url.h | 35 |
4 files changed, 0 insertions, 73 deletions
diff --git a/include/delphi/interfaces.inc b/include/delphi/interfaces.inc index c0e660bf82..8aa46f59f2 100644 --- a/include/delphi/interfaces.inc +++ b/include/delphi/interfaces.inc @@ -13,7 +13,6 @@ const MIID_TRANSLATE :MUUID='{0C0954EA-43D7-4452-99AC-F084D4456716}'; // Replaceable internal modules interface ids
const MIID_HISTORY :MUUID='{5CA0CBC1-999A-4EA2-8B44-F8F67D7F8EBE}';
const MIID_UIUSERINFO :MUUID='{570B931C-9AF8-48F1-AD9F-C4498C618A77}';
-const MIID_SRURL :MUUID='{5192445C-F5E8-46C0-8F9E-2B6D43E5C753}';
const MIID_SRAUTH :MUUID='{377780B9-2B3B-405B-9F36-B3C4878E6F33}';
const MIID_SRAWAY :MUUID='{5AB54C76-1B4C-4A00-B404-48CBEA5FEFE7}';
const MIID_SREMAIL :MUUID='{D005B5A6-1B66-445A-B603-74D4D4552DE2}';
diff --git a/include/delphi/m_api.pas b/include/delphi/m_api.pas index dc8c8ecced..7d5032e1b8 100644 --- a/include/delphi/m_api.pas +++ b/include/delphi/m_api.pas @@ -237,7 +237,6 @@ var {$include m_ssl.inc}
{$include statusmodes.inc}
{$include m_timezones.inc}
- {$include m_url.inc}
{$include m_userinfo.inc}
{$include m_utils.inc}
{$include m_xml.inc}
diff --git a/include/delphi/m_url.inc b/include/delphi/m_url.inc deleted file mode 100644 index d95063661a..0000000000 --- a/include/delphi/m_url.inc +++ /dev/null @@ -1,36 +0,0 @@ -{
-Miranda IM: the free IM client for Microsoft* Windows*
-
-Copyright 2000-2003 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
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-}
-
-{$IFNDEF M_URL}
-{$DEFINE M_URL}
-
-const
- {
- wParam : TMCONTACT
- lParam : 0
- Affects: bring up the send URL dialogbox for a user
- Returns: 0 on success, nonzero on failure, see notes
- Notes : service returns before the URL is sent.
- }
- MS_URL_SENDURL:PAnsiChar = 'SRUrl/SendCommand';
-
-{$ENDIF}
diff --git a/include/m_url.h b/include/m_url.h deleted file mode 100644 index bcbd8ecd84..0000000000 --- a/include/m_url.h +++ /dev/null @@ -1,35 +0,0 @@ -/*
-
-Miranda NG: the free IM client for Microsoft* Windows*
-
-Copyright (C) 2012-19 Miranda NG team (https://miranda-ng.org)
-Copyright (c) 2000-08 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
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-*/
-
-#ifndef M_URL_H__
-#define M_URL_H__ 1
-
-//bring up the send URL dialog for a user
-//wParam = (MCONTACT)hContact
-//lParam = 0
-//returns 0 on success or nonzero on failure
-//returns immediately, before the url is sent
-#define MS_URL_SENDURL "SRUrl/SendCommand"
-
-#endif // M_URL_H__
|