File: alarm.h

package info (click to toggle)
psyco-doc 1.6-1
  • links: PTS
  • area: contrib
  • in suites: lenny
  • size: 1,832 kB
  • ctags: 3,236
  • sloc: ansic: 23,895; python: 5,646; perl: 1,309; makefile: 153
file content (17 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 /***************************************************************/
/***                 General-purpose alarm module              ***/
 /***************************************************************/

#ifndef _ALARM_H
#define _ALARM_H


#include "psyco.h"


#define ALARM_FUNCTIONS   {"alarm",   psyco_new_alarm,   METH_VARARGS}

EXTERNFN PyObject* psyco_new_alarm(PyObject* dummy, PyObject* args);


#endif /* _ALARM_H */