aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Library/ml_bookmarks/bookmark.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Plugins/Library/ml_bookmarks/bookmark.h')
-rw-r--r--Src/Plugins/Library/ml_bookmarks/bookmark.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Src/Plugins/Library/ml_bookmarks/bookmark.h b/Src/Plugins/Library/ml_bookmarks/bookmark.h
new file mode 100644
index 00000000..5921e82e
--- /dev/null
+++ b/Src/Plugins/Library/ml_bookmarks/bookmark.h
@@ -0,0 +1,18 @@
+#ifndef NULLSOFT_BOOKMARKH
+#define NULLSOFT_BOOKMARKH
+
+#include <stdio.h>
+
+class BookmarkWriter
+{
+public:
+ BookmarkWriter();
+ void New(const wchar_t *filename);
+ void Open(const wchar_t *filename);
+ void Write(const char *filename, const char *title);
+ void Close();
+private:
+ FILE *fp;
+};
+
+#endif \ No newline at end of file