Patch 7.4.1721
Problem:    The vimtbar files are unused.
Solution:   Remove them. (Ken Takata)
Files:      src/vimtbar.dll, src/vimtbar.h, src/vimtbar.lib, Filelist


*** ../vim-7.4.1720/src/vimtbar.dll     2010-05-15 13:04:10.000000000 +0200
--- src/vimtbar.dll     1970-01-01 01:00:00.000000000 +0100
***************
*** 1,498 ****
- MZP~ø Vÿv
-  èXø‰Fúƒ~ú¸ÿÿëaƒ~ u Ä^ &ƒ?�ƒì  ÿt4 Wè þŒFþ‰~ü_ ƒï &‹] &‹ & G&‹G -  G*   - ô 
B õ I ÷ S ú V ü ^ ý r þ x        E H Z ] b s t u y ‡     • £ ´ µ º Â Ñ ó ö û  
 "*29;AFLQW]uw|Ž“¾ÃÆËÐÖáåç 
 
 
 
D
P
Z
`
 
“
˜
œ
¦
¬
¹
¾
Ä
Ò
×
Û
ö
  
     $ * 9 E H Q Y ^ a e p s z } €   ’ ª ® ½ Æ Ï Ú á ç ù       K N c }   œ ­ Á 
ç ê ð ù   # ( * B S V ^ x ‡ ‰ Ž ” ¥ ¬ ² ß ä ì ï ÷ E K [ k t } … ˜ Ÿ Á Æ É Ô ò õ 
          + : @ H K \ _ o € ƒ œ ® À È Ï Õ ß æ õ ý eefbutton is enabled
- #define TBSTATE_HIDDEN                0x08    // button is hidden
- #define TBSTATE_INDETERMINATE   0x10    // button is indeterminate
- #define TBSTATE_SELECTED      0x20    // mouse hovering over button (for 
coolbar look)
- 
- 
- 
- typedef struct tagADJUSTINFO
- {
-     TBBUTTON tbButton;
-     char szDescription[1];
- } ADJUSTINFO;
- 
- typedef ADJUSTINFO NEAR* PADJUSTINFO;
- typedef ADJUSTINFO FAR* LPADJUSTINFO;
- 
- 
- HWND WINAPI CreateToolbar(HWND hwnd, DWORD ws, WORD wID, int nBitmaps,
-       HINSTANCE hBMInst, WORD wBMID,
-       LPCTBBUTTON lpButtons, int iNumButtons);
- 
- #define CMB_DISCARDABLE 0x01    // create bitmap as discardable
- #define CMB_MASKED      0x02    // create image/mask pair in bitmap
- 
- 
- #define TB_ENABLEBUTTON       (WM_USER + 1)
- // wParam: UINT, button ID
- // lParam: BOOL LOWORD, enable if nonzero; HIWORD not used, 0
- // return: not used
- //
- 
- #define TB_CHECKBUTTON        (WM_USER + 2)
- // wParam: UINT, button ID
- // lParam: BOOL LOWORD, check if nonzero; HIWORD not used, 0
- // return: not used
- //
- 
- #define TB_PRESSBUTTON        (WM_USER + 3)
- // wParam: UINT, button ID
- // lParam: BOOL LOWORD, press if nonzero; HIWORD not used, 0
- // return: not used
- //
- 
- #define TB_HIDEBUTTON (WM_USER + 4)
- // wParam: UINT, button ID
- // lParam: BOOL LOWORD, hide if nonzero; HIWORD not used, 0
- // return: not used
- //
- #define TB_INDETERMINATE      (WM_USER + 5)
- // wParam: UINT, button ID
- // lParam: BOOL LOWORD, make indeterminate if nonzero; HIWORD not used, 0
- // return: not used
- //
- 
- #define TB_ISBUTTONENABLED    (WM_USER + 9)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: BOOL LOWORD, enabled if nonzero; HIWORD not used
- //
- 
- #define TB_ISBUTTONCHECKED    (WM_USER + 10)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: BOOL LOWORD, checked if nonzero; HIWORD not used
- //
- 
- #define TB_ISBUTTONPRESSED    (WM_USER + 11)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: BOOL LOWORD, pressed if nonzero; HIWORD not used
- //
- 
- #define TB_ISBUTTONHIDDEN     (WM_USER + 12)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: BOOL LOWORD, hidden if nonzero; HIWORD not used
- //
- 
- #define TB_ISBUTTONINDETERMINATE      (WM_USER + 13)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: BOOL LOWORD, indeterminate if nonzero; HIWORD not used
- //
- 
- #define TB_SETSTATE           (WM_USER + 17)
- // wParam: UINT, button ID
- // lParam: UINT LOWORD, state bits; HIWORD not used, 0
- // return: not used
- //
- 
- #define TB_GETSTATE           (WM_USER + 18)
- // wParam: UINT, button ID
- // lParam: not used, 0
- // return: UINT LOWORD, state bits; HIWORD not used
- //
- 
- #define TB_ADDBITMAP          (WM_USER + 19)
- // wParam: UINT, number of button graphics in bitmap
- // lParam: one of:
- //       HINSTANCE LOWORD, module handle; UINT HIWORD, resource id
- //       HINSTANCE LOWORD, NULL; HBITMAP HIWORD, bitmap handle
- // return: one of:
- //       int LOWORD, index for first new button; HIWORD not used
- //       int LOWORD, -1 indicating error; HIWORD not used
- //
- 
- #define TB_ADDBUTTONS         (WM_USER + 20)
- // wParam: UINT, number of buttons to add
- // lParam: LPTBBUTTON, pointer to array of TBBUTTON structures
- // return: not used
- //
- 
- #define TB_INSERTBUTTON               (WM_USER + 21)
- // wParam: UINT, index for insertion (appended if index doesn't exist)
- // lParam: LPTBBUTTON, pointer to one TBBUTTON structure
- // return: not used
- //
- 
- #define TB_DELETEBUTTON               (WM_USER + 22)
- // wParam: UINT, index of button to delete
- // lParam: not used, 0
- // return: not used
- //
- 
- #define TB_GETBUTTON          (WM_USER + 23)
- // wParam: UINT, index of button to get
- // lParam: LPTBBUTTON, pointer to TBBUTTON buffer to receive button
- // return: not used
- //
- 
- #define TB_BUTTONCOUNT                (WM_USER + 24)
- // wParam: not used, 0
- // lParam: not used, 0
- // return: UINT LOWORD, number of buttons; HIWORD not used
- //
- 
- #define TB_COMMANDTOINDEX     (WM_USER + 25)
- // wParam: UINT, command id
- // lParam: not used, 0
- // return: UINT LOWORD, index of button (-1 if command not found);
- //       HIWORD not used
- //
- 
- 
- #define TBN_BEGINDRAG 0x0201
- #define TBN_ENDDRAG   0x0203
--- 0 ----
*** ../vim-7.4.1720/src/vimtbar.lib     2010-05-15 13:04:08.000000000 +0200
--- src/vimtbar.lib     1970-01-01 01:00:00.000000000 +0100
***************
*** 1 ****
- ð

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Raspunde prin e-mail lui