blob: 5921e82e6e340cb4d521101071feae1e87b92867 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|