Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1000 B

  1. #ifndef _BTOOLBAR_H_
  2. #define _BTOOLBAR_H_
  3. #include <wininet.h>
  4. typedef struct tag_btoolbarA
  5. {
  6. CHAR szCaption[MAX_BTOOLBAR_TEXT_LENGTH+1];
  7. CHAR szAction[INTERNET_MAX_URL_LENGTH];
  8. CHAR szIcon[MAX_PATH];
  9. CHAR szHotIcon[MAX_PATH];
  10. // TCHAR szToolTipText[MAX_PATH]; // disable for IE5 since not implemented in browser
  11. BOOL fShow;
  12. BOOL fDeleted;
  13. } BTOOLBARA, *PBTOOLBARA;
  14. typedef struct tag_btoolbarW
  15. {
  16. WCHAR szCaption[MAX_BTOOLBAR_TEXT_LENGTH+1];
  17. WCHAR szAction[INTERNET_MAX_URL_LENGTH];
  18. WCHAR szIcon[MAX_PATH];
  19. WCHAR szHotIcon[MAX_PATH];
  20. // TCHAR szToolTipText[MAX_PATH]; // disable for IE5 since not implemented in browser
  21. BOOL fShow;
  22. BOOL fDeleted;
  23. } BTOOLBARW, *PBTOOLBARW;
  24. // TCHAR mappings
  25. #ifdef UNICODE
  26. #define BTOOLBAR BTOOLBARW
  27. #define PBTOOLBAR PBTOOLBARW
  28. #else
  29. #define BTOOLBAR BTOOLBARA
  30. #define PBTOOLBAR PBTOOLBARA
  31. #endif
  32. #endif