comparison src/atimer.h @ 89909:68c22ea6027c

Sync to HEAD
author Kenichi Handa <handa@m17n.org>
date Fri, 16 Apr 2004 12:51:06 +0000
parents 375f2633d815
children 4c90ffeb71c5
comparison
equal deleted inserted replaced
89908:ee1402f7b568 89909:68c22ea6027c
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20 20
21 #ifndef EMACS_ATIMER_H 21 #ifndef EMACS_ATIMER_H
22 #define EMACS_ATIMER_H 22 #define EMACS_ATIMER_H
23
24 /* Declare the prototype for a general external function. */
25 #if defined (PROTOTYPES) || defined (WINDOWSNT)
26 #define P_(proto) proto
27 #else
28 #define P_(proto) ()
29 #endif
23 30
24 #include "systime.h" /* for EMACS_TIME */ 31 #include "systime.h" /* for EMACS_TIME */
25 32
26 /* Forward declaration. */ 33 /* Forward declaration. */
27 34
80 void stop_other_atimers P_ ((struct atimer *)); 87 void stop_other_atimers P_ ((struct atimer *));
81 void run_all_atimers P_ ((void)); 88 void run_all_atimers P_ ((void));
82 Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object)); 89 Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object));
83 90
84 #endif /* EMACS_ATIMER_H */ 91 #endif /* EMACS_ATIMER_H */
92
93 /* arch-tag: 02c7c1c8-45bd-4222-b874-4ca44662f60b
94 (do not change this comment) */