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.

24 lines
1.1 KiB

  1. /*************************************************************************/
  2. /* Copyright (C) 1999 Microsoft Corporation */
  3. /* File: Bookmark.h */
  4. /* Description: Implementation of Bookmark API */
  5. /* Author: Steve Rowe */
  6. /* Modified: David Janecek */
  7. /*************************************************************************/
  8. #ifndef __BOOKMARK_H
  9. #define __BOOKMARK_H
  10. //#include <streams.h>
  11. class CBookmark {
  12. public:
  13. static HRESULT SaveToRegistry(IDvdState *ppBookmark);
  14. static HRESULT LoadFromRegistry(IDvdState **ppBookmark);
  15. static HRESULT DeleteFromRegistry();
  16. };/* end of class CBookmark */
  17. #endif // __BOOKMARK_H
  18. /*************************************************************************/
  19. /* Function: Bookmark.h */
  20. /*************************************************************************/