diff options
Diffstat (limited to 'src/open-file.c')
-rw-r--r-- | src/open-file.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/open-file.c b/src/open-file.c index ceda1d3..ef4a039 100644 --- a/src/open-file.c +++ b/src/open-file.c @@ -24,7 +24,6 @@ #include "open-file.h" #include "file-utils.h" - OpenFile* open_file_new (const char *path, const char *extracted_path, @@ -45,7 +44,6 @@ open_file_new (const char *path, return ofile; } - void open_file_free (OpenFile *ofile) { @@ -59,7 +57,6 @@ open_file_free (OpenFile *ofile) g_free (ofile); } - OpenFile * open_file_copy (OpenFile *src) { @@ -74,7 +71,6 @@ open_file_copy (OpenFile *src) return ofile; } - GType open_file_get_type (void) { |