summaryrefslogtreecommitdiff
path: root/irdev.h
blob: bf0227a0d5047033d759518e3cd5ca348916d36a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 *
 *	IRBOX, an Ivy driver for infra-red remote controls
 *
 *	Copyright 1998-1999 
 *	Centre d'Etudes de la Navigation Aerienne
 *
 *	Device driver
 *
 *	Authors: Francois-Regis Colin <fcolin@cenatoulouse.dgac.fr>
 *		Yann Malichecq
 *		Stephane Chatty <chatty@cenatoulouse.dgac.fr>
 *
 *	$Id$
 *
 *	Please refer to file version.h for the
 *	copyright notice regarding this software
 */


#ifndef IR_H
#define IR_H 1

typedef enum {
	EVENT_BTN_PRESS,
	EVENT_BTN_RELEASE
} IrEvent;

typedef struct ir_state IrState;

typedef void (*IrEvtCallback) (IrState *ir, const unsigned char *code );
typedef void (*IrFailCallback) (IrState *ir);
typedef void (*IrTimerCallback) (void * id, IrState *ir, int delta );
typedef void* (*IrTimerSetter) (IrTimerCallback cb, long value, void *data );
typedef void (*IrTimerCanceller) (void *timerid );

extern IrState* IrOpen (const char *name);
extern void IrClose (IrState *ir);
extern int IrInit (IrState *ir, IrEvtCallback cb, IrFailCallback f, IrTimerSetter st, IrTimerCanceller ct);
extern void IrIntr (IrState *ir);
extern int IrGetFd (IrState *ir);


#endif