summaryrefslogtreecommitdiff
path: root/cocoa/save.m
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-01-12 20:21:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-01-12 20:21:17 +0000
commitb58dcc351f3f7ec32ecb0553436ff9ee76e52551 (patch)
treefed57c711a544fb8272423e2645c5bbf2def25d7 /cocoa/save.m
parent8c09af55681ff4d4e40eba62fca0c219443a2fc7 (diff)
downloadnetsurf-b58dcc351f3f7ec32ecb0553436ff9ee76e52551.tar.gz
netsurf-b58dcc351f3f7ec32ecb0553436ff9ee76e52551.tar.bz2
Cocoa front end (credit: Sven Weidauer)
svn path=/trunk/netsurf/; revision=11292
Diffstat (limited to 'cocoa/save.m')
-rw-r--r--cocoa/save.m37
1 files changed, 37 insertions, 0 deletions
diff --git a/cocoa/save.m b/cocoa/save.m
new file mode 100644
index 000000000..a91a29810
--- /dev/null
+++ b/cocoa/save.m
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2011 Sven Weidauer <sven.weidauer@gmail.com>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#import <Cocoa/Cocoa.h>
+
+#import "desktop/save_complete.h"
+
+#define UNIMPL() NSLog( @"Function '%s' unimplemented", __func__ )
+
+bool save_complete_gui_save(const char *path, const char *filename,
+ size_t len, const char *sourcedata, content_type type)
+{
+ UNIMPL();
+ return false;
+}
+
+int save_complete_htmlSaveFileFormat(const char *path, const char *filename,
+ xmlDocPtr cur, const char *encoding, int format)
+{
+ UNIMPL();
+ return 0;
+}