home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / utils / sercli.shr / sercli / src / rcs / errors.h,v < prev    next >
Encoding:
Text File  |  1993-06-16  |  1.9 KB  |  141 lines

  1. head    1.5;
  2. access;
  3. symbols
  4.     sercli_v1_10:1.5
  5.     sercli_v1_9:1.4
  6.     sercli_v1_8:1.4
  7.     sercli_v1_7:1.3
  8.     sercli_v1_6:1.2
  9.     sercli_v1_5:1.1;
  10. locks
  11.     rkr:1.5;
  12. comment    @**  @;
  13.  
  14.  
  15. 1.5
  16. date    93.06.16.23.33.42;    author rkr;    state Exp;
  17. branches;
  18. next    1.4;
  19.  
  20. 1.4
  21. date    91.12.20.09.44.14;    author rkr;    state Exp;
  22. branches;
  23. next    1.3;
  24.  
  25. 1.3
  26. date    91.12.10.02.48.39;    author rkr;    state Exp;
  27. branches;
  28. next    1.2;
  29.  
  30. 1.2
  31. date    91.12.02.10.51.56;    author rkr;    state Exp;
  32. branches;
  33. next    1.1;
  34.  
  35. 1.1
  36. date    91.11.28.08.25.33;    author rkr;    state Exp;
  37. branches;
  38. next    ;
  39.  
  40.  
  41. desc
  42. @sercli is a program to permit shell-like interface to the serial port,
  43. while also permitting easy config- and run-time-control over the way the
  44. serial port (or even _which_ serial port) is used.
  45.  
  46. @
  47.  
  48.  
  49. 1.5
  50. log
  51. @Added per-file copyright notice, as suggested by GPL.
  52. @
  53. text
  54. @/*
  55. **  $Source: WB_2.1:ho/rcs/errors.h,v $
  56. **  $Author: rkr $
  57. **  $Revision: 1.4 $
  58. **  $Locker:  $
  59. **  $State: Exp $
  60. **  $Date: 1991/12/20 09:44:14 $
  61. **
  62. **  sercli (an Amiga .device <-> FIFO interface tool)
  63. **  Copyright (C) 1993  Richard Rauch
  64. **
  65. **  See /doc/sercli.doc and /COPYING for use and distribution license.
  66. **
  67. */
  68.  
  69. typedef void (*error_handler) (void *error);
  70.  
  71. typedef enum
  72. {
  73.     error_type_serial = 0,
  74.  
  75.     num_error_types
  76. } error_type;
  77.  
  78.  
  79. extern error_handler set_error_handler (error_type type, error_handler new_handler);
  80. extern void handle_error (error_type type, void *error);
  81. @
  82.  
  83.  
  84. 1.4
  85. log
  86. @*** empty log message ***
  87. @
  88. text
  89. @d2 1
  90. a2 1
  91. **  $Source: Workbench:personal/rkr/prog/sercli/src/rcs/errors.h,v $
  92. d4 2
  93. a5 2
  94. **  $Revision: 1.3 $
  95. **  $Locker: rkr $
  96. d7 6
  97. a12 1
  98. **  $Date: 91/12/10 02:48:39 $
  99. @
  100.  
  101.  
  102. 1.3
  103. log
  104. @*** empty log message ***
  105. @
  106. text
  107. @d4 1
  108. a4 1
  109. **  $Revision: 1.2 $
  110. d7 1
  111. a7 1
  112. **  $Date: 91/12/02 10:51:56 $
  113. @
  114.  
  115.  
  116. 1.2
  117. log
  118. @*** empty log message ***
  119. @
  120. text
  121. @d7 1
  122. a7 1
  123. **  $Date: 91/12/02 10:42:34 $
  124. @
  125.  
  126.  
  127. 1.1
  128. log
  129. @Initial revision
  130. @
  131. text
  132. @d2 6
  133. a7 6
  134. **  $Source$
  135. **  $Author$
  136. **  $Revision$
  137. **  $Locker$
  138. **  $State$
  139. **  $Date$
  140. @
  141.