head	1.3;
access;
symbols
	OCT93:1.3;
locks;
comment	@ * @;


1.3
date	93.09.18.20.16.23;	author Rhialto;	state Exp;
branches;
next	1.2;

1.2
date	93.06.11.16.15.25;	author Rhialto;	state Exp;
branches;
next	1.1;

1.1
date	93.06.11.15.19.27;	author Rhialto;	state Exp;
branches;
next	;


desc
@Prototypes for gen.c
@


1.3
log
@Unconditional prototypes.
@
text
@/* $Id: gen.h,v 1.2 1993/06/11 16:15:25 Rhialto Exp $
 * $Log: gen.h,v $
 * Revision 1.2  1993/06/11  16:15:25  Rhialto
 * First real RCS checkin
 *
 */
/*
  gen.h

  (c) Copyright 1991 by David M. Siegel.
      All rights reserved.

  %W% %G% %U%
*/

#ifndef in_libfax_gen_h
#define in_libfax_gen_h 1

/*
  Prototypes:
*/

int faxmodem_open(FaxModem *f, char *filename);
int faxmodem_close(FaxModem *f);
int faxmodem_sync(FaxModem *f, int total_tries);
int faxmodem_hangup(FaxModem *f);
int faxmodem_bit_reverse(FaxModem *f, int code);
int faxmodem_byte_align(FaxModem *f, int code);
int faxmodem_set_capabilities(FaxModem *f, int vr, int br, int wd, int ln,
     int df, int ec, int bf, int st);
int faxmodem_want_poll(FaxModem *f);

#endif
@


1.2
log
@First real RCS checkin
@
text
@d1 5
a5 2
/* $Id$
 * $Log$
d23 9
a31 53
int faxmodem_open(
#ifdef _PROTO
     FaxModem *f,
     char *filename
#endif
);

int faxmodem_close(
#ifdef _PROTO
     FaxModem *f
#endif
);

int faxmodem_sync(
#ifdef _PROTO
     FaxModem *f,
     int total_tries
#endif
);

int faxmodem_hangup(
#ifdef _PROTO
     FaxModem *f
#endif
);

int faxmodem_bit_reverse(
#ifdef _PROTO
     FaxModem *f,
     int code
#endif
);

int faxmodem_byte_align(
#ifdef _PROTO
     FaxModem *f,
     int code
#endif
);

int faxmodem_set_capabilities(
#ifdef _PROTO
     FaxModem *f,
     int vr,
     int br,
     int wd,
     int ln,
     int df,
     int ec,
     int bf,
     int st
#endif
);
@


1.1
log
@Initial revision
@
text
@d1 3
@
