X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=babel%2Ftads.h;fp=babel%2Ftads.h;h=0000000000000000000000000000000000000000;hb=3c59ba5eef5cb4d39c06eb7f523b9c3b026bdc9b;hp=296b91d8b81b8e103312995ac9050bed1c2924f4;hpb=ed91d840318ed6ebfe3a5a77fa17114ddbf56640;p=projects%2Fchimara%2Fchimara.git diff --git a/babel/tads.h b/babel/tads.h deleted file mode 100644 index 296b91d..0000000 --- a/babel/tads.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * tads.h - Treaty of Babel common declarations for tads2 and tads3 modules - * - * This file depends on treaty_builder.h - * - * This file is public domain, but note that any changes to this file may - * render it noncompliant with the Treaty of Babel - * - * Modified - *. 04/18/2006 MJRoberts - creation - */ - -#ifndef TADS_H -#define TADS_H - -/* match a TADS file signature */ -int tads_match_sig(const void *buf, int32 len, const char *sig); - -/* get the IFID for a tads story file */ -int32 tads_get_story_file_IFID(void *story_file, int32 extent, - char *output, int32 output_extent); - -/* get the synthesized iFiction record from a tads story file */ -int32 tads_get_story_file_metadata(void *story_file, int32 extent, - char *buf, int32 bufsize); - -/* get the size of the synthesized iFiction record for a tads story file */ -int32 tads_get_story_file_metadata_extent(void *story_file, int32 extent); - -/* get the cover art from a tads story file */ -int32 tads_get_story_file_cover(void *story_file, int32 extent, - void *buf, int32 bufsize); - -/* get the size of the cover art from a tads story file */ -int32 tads_get_story_file_cover_extent(void *story_file, int32 extent); - -/* get the image format (jpeg, png) of the covert art in a tads story file */ -int32 tads_get_story_file_cover_format(void *story_file, int32 extent); - -#endif /* TADS_H */