From 29042959c75c93a51797caf2530df1e98fcecdde Mon Sep 17 00:00:00 2001 From: Morten Rolland Date: Sun, 21 Mar 1999 15:33:59 +0000 Subject: [PATCH] Essential functions used during a fax-transfer. --- G3/kernel.c | 39 +++++++++++++++++++++++++++++++++++++++ include/ifax/G3/kernel.h | 31 +++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 G3/kernel.c create mode 100644 include/ifax/G3/kernel.h diff --git a/G3/kernel.c b/G3/kernel.c new file mode 100644 index 0000000..5ca14e1 --- /dev/null +++ b/G3/kernel.c @@ -0,0 +1,39 @@ +/* $Id$ +****************************************************************************** + + Fax program for ISDN. + Take care of the main housekeeping-work in the fax-system + + Copyright (C) 1999 Morten Rolland [Morten.Rolland@asker.mail.telia.com] + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************************************************** +*/ + +#include + +void fax_run_internals(struct G3fax *fax) +{ + void (*prev)(struct G3fax *); + + do { + prev = fax->fsm; + (fax->fsm)(fax); + } while ( prev != fax->fsm ); +} diff --git a/include/ifax/G3/kernel.h b/include/ifax/G3/kernel.h new file mode 100644 index 0000000..345f2fa --- /dev/null +++ b/include/ifax/G3/kernel.h @@ -0,0 +1,31 @@ +/* $Id$ +****************************************************************************** + + Fax program for ISDN. + Take care of the main housekeeping-work in the fax-system + + Copyright (C) 1999 Morten Rolland [Morten.Rolland@asker.mail.telia.com] + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************************************************** +*/ + +#include + +extern void fax_run_internals(struct G3fax *fax);