home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fax-3.2.1 / lib / libfax / gen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-31  |  741 b   |  66 lines

  1. /*
  2.   gen.h
  3.  
  4.   (c) Copyright 1991 by David M. Siegel.
  5.       All rights reserved.
  6.  
  7.   %W% %G% %U%
  8. */
  9.  
  10. #ifndef in_libfax_gen_h
  11. #define in_libfax_gen_h 1
  12.  
  13. /*
  14.   Prototypes:
  15. */
  16.  
  17. int faxmodem_open(
  18. #ifdef _PROTO
  19.      FaxModem *f,
  20.      char *filename
  21. #endif
  22. );
  23.  
  24. int faxmodem_close(
  25. #ifdef _PROTO
  26.      FaxModem *f
  27. #endif
  28. );
  29.  
  30. int faxmodem_sync(
  31. #ifdef _PROTO
  32.      FaxModem *f,
  33.      int total_tries
  34. #endif
  35. );
  36.  
  37. int faxmodem_hangup(
  38. #ifdef _PROTO
  39.      FaxModem *f
  40. #endif
  41. );
  42.  
  43. int faxmodem_bit_reverse(
  44. #ifdef _PROTO
  45.      FaxModem *f,
  46.      int code
  47. #endif
  48. );
  49.  
  50. int faxmodem_byte_align(
  51. #ifdef _PROTO
  52.      FaxModem *f,
  53.      int code
  54. #endif
  55. );
  56.  
  57. int faxmodem_set_capabilities(
  58. #ifdef _PROTO
  59.      FaxModem *f,
  60.      int vr,
  61.      int br                  
  62. #endif
  63. );
  64.  
  65. #endif
  66.