1
0

bookmark.h 297 B

123456789101112131415161718
  1. #ifndef NULLSOFT_BOOKMARKH
  2. #define NULLSOFT_BOOKMARKH
  3. #include <stdio.h>
  4. class BookmarkWriter
  5. {
  6. public:
  7. BookmarkWriter();
  8. void New(const wchar_t *filename);
  9. void Open(const wchar_t *filename);
  10. void Write(const char *filename, const char *title);
  11. void Close();
  12. private:
  13. FILE *fp;
  14. };
  15. #endif