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.

34 lines
728 B

  1. // File: cmdtb.h
  2. #ifndef _CMDTB_H_
  3. #define _CMDTB_H_
  4. enum {
  5. CMDTB_END = 0, // end of list marker
  6. CMDTB_NEW_CALL = 1, // the first valid toolbar command index
  7. CMDTB_HANGUP,
  8. CMDTB_SHARE,
  9. CMDTB_WHITEBOARD,
  10. CMDTB_CHAT,
  11. CMDTB_AGENDA,
  12. // CMDTB_STOP,
  13. CMDTB_REFRESH,
  14. CMDTB_SPEEDDIAL,
  15. CMDTB_SWITCH,
  16. CMDTB_DELETE,
  17. CMDTB_DELETE_ALL,
  18. CMDTB_SEND_MAIL,
  19. CMDTB_PROPERTIES,
  20. CMDTB_BACK,
  21. CMDTB_FORWARD,
  22. CMDTB_HOME,
  23. CMDTB_MAX // count of toolbar items
  24. };
  25. // CMDTB_STOP is not used anymore....
  26. // There is a bunch of old code that is not yanked from conf yet that needs this....
  27. // this just allows those files to compile...
  28. #define CMDTB_STOP 666
  29. #endif /* _CMDTB_H_ */