diff options
author | George Hazan <george.hazan@gmail.com> | 2024-01-17 20:56:37 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-01-17 20:56:37 +0300 |
commit | 0408c8952ca633a1ef37e3c4419816fa4ad5c418 (patch) | |
tree | bfc994a0ff6c215ac55a9d3f004414f87b66d5ff /include | |
parent | 78034bcd615e739ad51a1b4bc570b6f1927932fc (diff) |
fixes #4109 (Прекратить хранение списка групп в базе)
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_clist.inc | 4 | ||||
-rw-r--r-- | include/m_import.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/delphi/m_clist.inc b/include/delphi/m_clist.inc index 195b19fbc5..35914d09a6 100644 --- a/include/delphi/m_clist.inc +++ b/include/delphi/m_clist.inc @@ -129,4 +129,8 @@ function Clist_GroupCreate(hParentGroup:integer; groupName:PWideChar) : integer; procedure Clist_ContactDoubleClicked(hContact:TMCONTACT); stdcall; external AppDll;
+function Clist_GroupBuildMenu(idxfrom:integer=100) : HMENU; stdcall; external AppDll;
+
+procedure Clist_SetGroup(hContact:TMCONTACT; groupName:PWideChar); stdcall; external AppDll;
+
{$ENDIF}
diff --git a/include/m_import.h b/include/m_import.h index 1616bab127..be46a8b288 100644 --- a/include/m_import.h +++ b/include/m_import.h @@ -42,7 +42,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define IOPT_SYSTEM 0x00000800
#define IOPT_CONTACTS 0x00001000
-#define IOPT_GROUPS 0x00002000
#define IOPT_SYS_SETTINGS 0x00004000
#define IOPT_COMPLETE 0x00007FFE
|