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.

67 lines
1.9 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: O N C O M M A N D _ D B G . H
  7. //
  8. // Contents: Debug command handler header
  9. //
  10. // Notes:
  11. //
  12. // Author: jeffspr 23 Jul 1998
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef _ONCOMMAND_DBG_H_
  16. #define _ONCOMMAND_DBG_H_
  17. // All of these below handle individual commands
  18. //
  19. HRESULT HrOnCommandDebugTray(
  20. IN const PCONFOLDPIDLVEC& apidl,
  21. HWND hwndOwner,
  22. LPSHELLFOLDER psf);
  23. HRESULT HrOnCommandDebugTracing(
  24. IN const PCONFOLDPIDLVEC& apidl,
  25. HWND hwndOwner,
  26. LPSHELLFOLDER psf);
  27. HRESULT HrOnCommandDebugNotifyAdd(
  28. IN const PCONFOLDPIDLVEC& apidl,
  29. HWND hwndOwner,
  30. LPSHELLFOLDER psf);
  31. HRESULT HrOnCommandDebugNotifyRemove(
  32. IN const PCONFOLDPIDLVEC& apidl,
  33. HWND hwndOwner,
  34. LPSHELLFOLDER psf);
  35. HRESULT HrOnCommandDebugNotifyTest(
  36. IN const PCONFOLDPIDLVEC& apidl,
  37. HWND hwndOwner,
  38. LPSHELLFOLDER psf);
  39. HRESULT HrOnCommandDebugRefresh(
  40. IN const PCONFOLDPIDLVEC& apidl,
  41. HWND hwndOwner,
  42. LPSHELLFOLDER psf);
  43. HRESULT HrOnCommandDebugRefreshNoFlush(
  44. IN const PCONFOLDPIDLVEC& apidl,
  45. HWND hwndOwner,
  46. LPSHELLFOLDER psf);
  47. HRESULT HrOnCommandDebugRefreshSelected(
  48. IN const PCONFOLDPIDLVEC& apidl,
  49. HWND hwndOwner,
  50. LPSHELLFOLDER psf);
  51. HRESULT HrOnCommandDebugRemoveTrayIcons(
  52. IN const PCONFOLDPIDLVEC& apidl,
  53. HWND hwndOwner,
  54. LPSHELLFOLDER psf);
  55. #endif // _ONCOMMAND_DBG_H_