summaryrefslogtreecommitdiff
path: root/delphi/Awkward/include/m_tipper.inc
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-05-15 15:36:29 +0000
committerwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2011-05-15 15:36:29 +0000
commit9e0ca10baba2700d19bd3a3b81500b73bd4013d0 (patch)
tree50ed9f5aee315b18f713eaa578fd4873e753e659 /delphi/Awkward/include/m_tipper.inc
parent6f8f9d1405f64ca8218a6b83b83e01e3ece3c9ea (diff)
unneeded delphi folder removed
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@107 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'delphi/Awkward/include/m_tipper.inc')
-rw-r--r--delphi/Awkward/include/m_tipper.inc51
1 files changed, 0 insertions, 51 deletions
diff --git a/delphi/Awkward/include/m_tipper.inc b/delphi/Awkward/include/m_tipper.inc
deleted file mode 100644
index d9fea82..0000000
--- a/delphi/Awkward/include/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}