From ab8132461435e134601c4bc58ba5e964c1f8a66f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 15 Sep 2013 22:11:32 +0000 Subject: unused service removed (MS_VARS_GETCONTACTFROMSTRING) git-svn-id: http://svn.miranda-ng.org/main/trunk@6082 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ExternalAPI/delphi/m_variables.inc | 48 ------------------------------ 1 file changed, 48 deletions(-) (limited to 'plugins/ExternalAPI/delphi') diff --git a/plugins/ExternalAPI/delphi/m_variables.inc b/plugins/ExternalAPI/delphi/m_variables.inc index 4d36c96d35..bcc1f9889f 100644 --- a/plugins/ExternalAPI/delphi/m_variables.inc +++ b/plugins/ExternalAPI/delphi/m_variables.inc @@ -386,52 +386,4 @@ const CallService(MS_VARS_SHOWHELP, (WPARAM)hwndEdit, (LPARAM)"some initial text"); } -// -------------------------------------------------------------------------- -// Retrieve a contact's HANDLE given a string -// -------------------------------------------------------------------------- - - MS_VARS_GETCONTACTFROMSTRING:PAnsiChar = 'Vars/GetContactFromString'; -{ - Searching for contacts in the database. You can find contacts in db by - searching for their name, e.g first name. - - Parameters: - ------------------------ - wParam = (WPARAM)(CONTACTSINFO *)&ci - See below. - lParam = 0 - - Return Value: - ------------------------ - Returns number of contacts found matching the given string representation. - The hContacts array of CONTACTSINFO struct contains these hContacts after - the call. - - Note: The hContacts array needs to be freed after use using mir_free. -} - -type - TCONTACTSINFO = record - cbSize :int; // Set this to sizeof(CONTACTSINFO). - szContact:TCHAR; // String to search for, e.g. last name (can't be NULL). - hContacts:^THANDLE; // (output) Array of contacts found. - flags :DWORD; // Contact details that will be matched with the search - // string (flags can be combined). - end; - -const -// Possible flags: - CI_PROTOID = $00000001; // The contact in the string is encoded in the - // format , e.g. . - CI_NICK = $00000002; // Search nick names. - CI_LISTNAME = $00000004; // Search custom names shown in contact list. - CI_FIRSTNAME = $00000008; // Search contact's first names (contact details). - CI_LASTNAME = $00000010; // Search contact's last names (contact details). - CI_EMAIL = $00000020; // Search contact's email adresses (contact details). - CI_UNIQUEID = $00000040; // Search unique ids of the contac, e.g. UIN. - CI_CNFINFO = $40000000; // Searches one of the CNF_* flags (set flags to - // CI_CNFINFO|CNF_X), only one CNF_ type possible - CI_UNICODE = $80000000; // tszContact is a unicode string (WCHAR*). - CI_TCHAR = CI_UNICODE; // Strings in structure are TCHAR*. - {$ENDIF} -- cgit v1.2.3