2025-04-27 07:49:33 -04:00

23 lines
1.0 KiB
C++

/*************************************************************************/
/* Copyright (C) 1999 Microsoft Corporation */
/* File: Bookmark.h */
/* Description: Implementation of Bookmark API */
/* Author: Steve Rowe */
/* Modified: David Janecek */
/*************************************************************************/
#ifndef __BOOKMARK_H
#define __BOOKMARK_H
class CBookmark {
public:
static HRESULT SaveToRegistry(IDvdState *ppBookmark);
static HRESULT LoadFromRegistry(IDvdState **ppBookmark);
static HRESULT DeleteFromRegistry();
};/* end of class CBookmark */
#endif // __BOOKMARK_H
/*************************************************************************/
/* Function: Bookmark.h */
/*************************************************************************/