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.
|
|
/*************************************************************************/ /* 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 */ /*************************************************************************/
|