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.

66 lines
1.0 KiB

  1. /******************************Module*Header*******************************\
  2. * Module Name: databas.h
  3. *
  4. * This module implements the database routines for the CD Audio app.
  5. * The information is stored in the ini file "cdaudio.ini" which should
  6. * be located in the nt\windows directory.
  7. *
  8. *
  9. * Author:
  10. * Rick Turner (ricktu) 31-Jan-1992
  11. *
  12. *
  13. * Revision History:
  14. *
  15. * 04-Aug-1992 (ricktu) Incorperated routines from old cdaudio.c,
  16. * and made work w/new child window framework.
  17. *
  18. *
  19. * Copyright (c) 1993 Microsoft Corporation
  20. \**************************************************************************/
  21. VOID
  22. ErasePlayList(
  23. int cdrom
  24. );
  25. VOID
  26. EraseSaveList(
  27. int cdrom
  28. );
  29. VOID
  30. EraseTrackList(
  31. int cdrom
  32. );
  33. PTRACK_PLAY
  34. CopyPlayList(
  35. PTRACK_PLAY p
  36. );
  37. VOID
  38. ResetPlayList(
  39. int cdrom
  40. );
  41. DWORD
  42. ComputeNewDiscId(
  43. int cdrom
  44. );
  45. DWORD
  46. ComputeOrgDiscId(
  47. int cdrom
  48. );
  49. VOID
  50. AddFindEntry(
  51. int cdrom,
  52. DWORD key,
  53. PCDROM_TOC lpTOC
  54. );
  55. BOOL
  56. WriteSettings(
  57. VOID
  58. );