mirror of https://github.com/tongzx/nt5src
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.
25 lines
1.0 KiB
25 lines
1.0 KiB
/*************************************************************************/
|
|
/* 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
|
|
|
|
//#include <streams.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 */
|
|
/*************************************************************************/
|