summaryrefslogtreecommitdiff
path: root/irtable.h
blob: 565f6c88ae0743d7b883a1455ac0f4d551530261 (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
/*
 *
 *	IRBOX, an Ivy driver for infra-red remote controls
 *
 *	Copyright 1998-1999 
 *	Centre d'Etudes de la Navigation Aerienne
 *
 *	Tables for decoding events
 *
 *	$Id$
 *
 */

#ifndef irtable_h_
#define irtable_h_

typedef struct {
	const char* name;
	const char* type;
} IrTable;

extern IrTable* IrTableReadFile (const char*);
extern IrTable* IrCreateTable ();
extern void IrTableName (IrTable*, const char*);
extern void IrTableType (IrTable*, const char*);
extern void IrTableAddBrand (IrTable*, const char*);
extern void IrTableAddKey (IrTable*, const char*, int, int, int, int, int, int);

extern int IrTableTranslateCode (const unsigned char*, IrTable**, const char**);

#endif /* irtable_h_ */