diff options
author | Nick White <arch@njw.me.uk> | 2008-04-03 00:42:00 +0000 |
---|---|---|
committer | Nick White <arch@njw.me.uk> | 2008-04-03 00:42:00 +0000 |
commit | f85c3b947985ad0cdaec0197dea8e077c9d5f6d7 (patch) | |
tree | f23d297e2265505f4aa53ae07ca3008d9b36d256 /src/issue.h | |
parent | b37c74e3fa320ffd23e31c10954243280f7d127d (diff) |
Removed all media handling code
This patch has no new features. It just removes all of the
media handling code. It was proving too hard to maintain, and
lots of it is now available at the website anyway.
git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-34
Diffstat (limited to 'src/issue.h')
-rw-r--r-- | src/issue.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/issue.h b/src/issue.h index 22499b5..e3fef70 100644 --- a/src/issue.h +++ b/src/issue.h @@ -47,31 +47,16 @@ typedef struct typedef struct { - char uri[512]; - char title[512]; - char comment[512]; - char preview_uri[512]; - int size; -} med; - -typedef struct -{ char preview_uri[512]; char title[512]; int size; issdates date; sec ** section; int no_of_sections; - med ** media; - int no_of_media; } iss; iss ** parsetoc(char *filepath, int * iss_no); -iss ** parsemedia(char * filepath, iss ** issue, int * no_of_issues); - -med ** parsemediagz(char * media_path, int * no_of_media); iss ** assignnew_iss(iss ** issue, int *no_of_issues); sec ** assignnew_sec(sec ** section, int * no_of_sections); it ** assignnew_it(it ** item, int * no_of_items); -med ** assignnew_med(med ** media, int * no_of_media); |