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 / msgs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-31  |  916 b   |  85 lines

  1. /*
  2.   msgs.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_msgs_h
  11. #define in_libfax_msgs_h 1
  12.  
  13. /*
  14.   Prototypes:
  15. */
  16.  
  17. char *hayes_result_msg(
  18. #ifdef _PROTO
  19.      int result
  20. #endif
  21. );
  22.  
  23. char *faxmodem_result_msg(
  24. #ifdef _PROTO
  25.      FaxModem *f
  26. #endif
  27. );
  28.  
  29. void faxmodem_print_id_strings(
  30. #ifdef _PROTO
  31.      FaxModem *f,
  32.      FILE *fp
  33. #endif
  34. );
  35.  
  36. char *t30_vr_string(
  37. #ifdef _PROTO
  38.      T30params *p
  39. #endif
  40. );
  41.  
  42. char *t30_br_string(
  43. #ifdef _PROTO
  44.      T30params *p
  45. #endif
  46. );
  47.  
  48. char *t30_wd_string(
  49. #ifdef _PROTO
  50.      T30params *p
  51. #endif
  52. );
  53.  
  54. char *t30_ln_string(
  55. #ifdef _PROTO
  56.      T30params *p
  57. #endif
  58. );
  59.  
  60. char *t30_df_string(
  61. #ifdef _PROTO
  62.      T30params *p
  63. #endif
  64. );
  65.  
  66. char *t30_ec_string(
  67. #ifdef _PROTO
  68.      T30params *p
  69. #endif
  70. );
  71.  
  72. char *t30_bf_string(
  73. #ifdef _PROTO
  74.      T30params *p
  75. #endif
  76. );
  77.  
  78. char *t30_st_string(
  79. #ifdef _PROTO
  80.      T30params *p
  81. #endif
  82. );
  83.  
  84. #endif
  85.