home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fax-3.2.1 / lib / libutil / alarm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-31  |  1.1 KB  |  56 lines

  1. /*
  2.   This file is part of the NetFax system.
  3.  
  4.   (c) Copyright 1989 by David M. Siegel and Sundar Narasimhan.
  5.       All rights reserved.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation.
  10.  
  11.     This program is distributed in the hope that it will be useful, 
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of 
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20.  
  21. /*
  22.   Prototypes:
  23. */
  24.  
  25. int alarm_add_event(
  26. #ifdef _PROTO
  27.     int (*routine)(),
  28.     float interval,
  29.     char *data
  30. #endif
  31. );
  32.  
  33. int alarm_delete_event(
  34. #ifdef _PROTO
  35.     int (*routine)()
  36. #endif
  37. );
  38.  
  39. int alarm_block(
  40. #ifdef _PROTO
  41.     void
  42. #endif
  43. );
  44.  
  45. int alarm_restore(
  46. #ifdef _PROTO
  47.     int mask
  48. #endif
  49. );
  50.  
  51. int alarm_start(
  52. #ifdef _PROTO
  53.     void
  54. #endif
  55. );
  56.