From faf1e494a31b70203aa67d34602f5256eabe0336 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 9 Oct 2012 05:20:49 +0000 Subject: Test commit: delphi headers structure as c headers structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1829 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_tipper.inc | 51 --------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 include/delphi/m_tipper.inc (limited to 'include/delphi/m_tipper.inc') diff --git a/include/delphi/m_tipper.inc b/include/delphi/m_tipper.inc deleted file mode 100644 index d9fea8208d..0000000000 --- a/include/delphi/m_tipper.inc +++ /dev/null @@ -1,51 +0,0 @@ -{ - Tipper API - note: Tipper is internally unicode and requires unicows.dll to function - correctly on 95/98/ME so you'll find a lot of wchar_t stuff in here - - translation function type - use hContact, module and setting to read your db value(s) and put the resulting - string into buff return buff if the translation was successful, or return 0 for failure -} -{$IFNDEF M_TIPPER} -{$DEFINE M_TIPPER} -type - TranslateFunc = function (hContact:THANDLE;module:PAnsiChar;setting_or_prefix:PAnsiChar; - buff:pWideChar;bufflen:int):pWideChar; cdecl; - -type - PDBVTranslation = ^TDBVTranslation; - TDBVTranslation = record - tfunc:TranslateFunc; // address of your translation function (see typedef above) - name :pWideChar; // make sure this is unique, and DO NOT translate it - id :dword; // will be overwritten by Tipper - do not use - end; - -{ - add a translation to tipper - wParam not used - lParam = pointer to PDBVTranslation -} -const - MS_TIPPER_ADDTRANSLATION:PAnsiChar = 'Tipper/AddTranslation'; - -{ - Show tooltip - wParam - optional (PAnsiChar) text for text-only tips - lParam - (PCLCINFOTIP) infoTip -} - MS_TIPPER_SHOWTIP:PAnsiChar = 'mToolTip/ShowTip'; - -{ - unicode extension to the basic functionality - wParam - optional (pWideChar) text for text-only tips - lParam - (PCLCINFOTIP) infoTip -} - MS_TIPPER_SHOWTIPW:PAnsiChar = 'mToolTip/ShowTipW'; - -{ - wParam=lParam=0; -} - MS_TIPPER_HIDETIP:PAnsiChar = 'mToolTip/HideTip'; - -{$ENDIF} -- cgit v1.2.3