home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / faxfile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  2.3 KB  |  97 lines

  1. /* Derived from gdevdfax.c */
  2. /* $Id: faxfile.h,v 1.3 1993/08/20 02:48:24 Rhialto Exp $
  3.  * $Log: faxfile.h,v $
  4.  * Revision 1.3  1993/08/20  02:48:24  Rhialto
  5.  * Add hack for auto-detecting fax bit order.
  6.  *
  7.  * Revision 1.2  1993/06/11  16:33:37  Rhialto
  8.  * First real RCS checkin
  9.  *
  10.  */
  11. /*************************************************************************
  12.  *    Format of page header in PC Research "group_3" FAX file
  13.  *
  14.  *    Note that all "shorts" are stored LSB in lowest byte address
  15.  *************************************************************************/
  16.  
  17. #include <stdio.h>
  18.  
  19. typedef struct
  20. {
  21.     char    magic[24];
  22. } FAXBREAK;
  23.  
  24. #define FAXMAGIC    "\000PC Research, Inc\000\000\000\000\000\000"
  25.  
  26. typedef struct
  27. {
  28. /*24*/    short    pages;        /* Number of pages in file */
  29. /*26*/    short    pagenum;
  30. /*28*/    char    msbfirst;    /* Coding used in file for codewords */
  31.                 /* MUST be set to 1, meaning the codewords */
  32.                 /* are filled starting with the most */
  33.                 /* significant bit */
  34. /*29*/    char    hires;        /* Set to 1 for Hi resolution, else 0 */
  35. /*30*/    char    dirty;        /* File may contain T.4 errors if 1, else 0 */
  36.                 /* e.g. it was received by FAX, not created */
  37.                 /* by a program */
  38. /*31*/    char    reservedc;
  39. /*32*/    short    reserved[12];
  40. } FAXINFO;
  41.  
  42. #define OFFSET_PAGES    24
  43.  
  44. typedef struct
  45. {
  46.     char    jt0;
  47.     char    jthires;    /* Set to 0x40 for Hi resolution, else 0 */
  48.     char    jt2;
  49.     char    jt3;
  50.     char    jt4;
  51.     char    jt5;
  52.     char    jt6;
  53.     char    jt7;
  54. } JTINFO;
  55.  
  56. /*
  57.  *    This appears before each page in a FAX file
  58.  */
  59. typedef struct
  60. {
  61.     FAXBREAK    id;
  62.     FAXINFO     info;
  63.     JTINFO        jtinfo;
  64. } FAXHDR;
  65.  
  66. /*
  67.  *    Some FAX-related data
  68.  */
  69.  
  70. /* The device descriptor */
  71. #define X_DPI 204
  72. #define Y_DPI 196        /* hires; non-hires is half this resolution */
  73. #define LINE_SIZE ((X_DPI * 85 / 10 + 7) / 8)   /* bytes per line */
  74.  
  75. #define LINE_BITS_0 1728
  76. #define LINE_BITS_1 2048
  77. #define LINE_BITS_2 2432
  78.  
  79. #define LINE_BITS LINE_BITS_0    /* only one supported now */
  80.  
  81. /*
  82.  * Prototypes
  83.  */
  84. /* tofax.c */
  85. long faxin_open_fp(FILE *file, int dostretch, int doreverse);
  86. int faxin_begin_page(FILE *file);
  87. int fromfax(FILE *inf, unsigned char *bitrow);
  88. /* tofax.c */
  89. struct faxout;
  90. struct faxout  *faxout_open (char *, int);
  91. struct faxout  *faxout_open_fp (FILE *, int);
  92. int    faxout_begin_page (struct faxout *, int, int);
  93. int    faxout_end_page (struct faxout *);
  94. int    faxout_close (struct faxout *);
  95. void    tofax(struct faxout *faxp, unsigned char *p, int linebits);
  96.  
  97.