Source code of Windows XP (NT5)
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.

55 lines
708 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: commands.h
  3. *
  4. * Functions that execue the users commands.
  5. *
  6. *
  7. * Created: dd-mm-93
  8. * Author: Stephen Estrop [StephenE]
  9. *
  10. * Copyright (c) 1993 Microsoft Corporation
  11. \**************************************************************************/
  12. void
  13. CdPlayerEjectCmd(
  14. void
  15. );
  16. void
  17. CdPlayerPlayCmd(
  18. void
  19. );
  20. void
  21. CdPlayerPauseCmd(
  22. void
  23. );
  24. void
  25. CdPlayerStopCmd(
  26. void
  27. );
  28. void
  29. CdPlayerPrevTrackCmd(
  30. void
  31. );
  32. void
  33. CdPlayerNextTrackCmd(
  34. void
  35. );
  36. void
  37. CdPlayerSeekCmd(
  38. HWND hwnd,
  39. BOOL fStart,
  40. UINT uDirection
  41. );
  42. void
  43. CdDiskInfoDlg(
  44. void
  45. );