summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/gui_file_table.h
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-10-08 22:04:11 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:55 +0200
commitcb52868b48be253e22a87863b3bd7ea582107d70 (patch)
treebce7a141526593b3fbb318da29fbe323b91aefb0 /frontends/kolibrios/gui_file_table.h
parente10b295a2684c3787ec618f1b23f0eac39af20ed (diff)
downloadnetsurf-cb52868b48be253e22a87863b3bd7ea582107d70.tar.gz
netsurf-cb52868b48be253e22a87863b3bd7ea582107d70.tar.bz2
Get rid of bloat
Diffstat (limited to 'frontends/kolibrios/gui_file_table.h')
-rw-r--r--frontends/kolibrios/gui_file_table.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/frontends/kolibrios/gui_file_table.h b/frontends/kolibrios/gui_file_table.h
deleted file mode 100644
index 2c0795fa1..000000000
--- a/frontends/kolibrios/gui_file_table.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* ------------------------------ */
-/* Part about GUI FILE TABLE. Will contain all functions required as well. */
-/* ------------------------------ */
-nserror kolibri_mkpath(char **str, size_t *size, size_t nemb, va_list ap)
-{
-
-}
-
-nserror kolibri_basename(const char *path, char **str, size_t *size)
-{
-
-}
-
-nserror kolibri_nsurl_to_path(struct nsurl *url, char **path)
-{
-
-}
-
-nserror kolibri_path_to_nsurl(const char *path, struct nsurl **url)
-{
-
-}
-
-nserror kolibri_mkdir_all(const char *fname)
-{
-
-}
-
-
-struct gui_file_table kolibri_gui_file_table = {
- /* Mandantory entries */
- .mkpath = kolibri_mkpath,
- .basename = kolibri_basename,
- .nsurl_to_path = kolibri_nsurl_to_path,
- .path_to_nsurl = kolibri_path_to_nsurl,
- .mkdir_all = kolibri_mkdir_all
-};