From ca51f6abf6debc1b6718f59129886fea04ee12b0 Mon Sep 17 00:00:00 2001 From: jacomi Date: Mon, 25 Jan 1999 18:35:13 +0000 Subject: new directory structure and data --- src/irtable.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/irtable.h (limited to 'src/irtable.h') diff --git a/src/irtable.h b/src/irtable.h new file mode 100644 index 0000000..fc2ed4d --- /dev/null +++ b/src/irtable.h @@ -0,0 +1,38 @@ +/* + * + * IRBOX, an Ivy driver for infra-red remote controls + * + * Copyright 1998-1999 + * Centre d'Etudes de la Navigation Aerienne + * + * Tables for decoding events + * + * Authors: Stephane Chatty + * + * $Id$ + * + * Please refer to file version.h for the + * copyright notice regarding this software + */ + +#ifndef irtable_h_ +#define irtable_h_ + +typedef struct { + const char* name; + const char* type; +} IrTable; + +extern void IrResetTables (void); +extern void IrReadTables (const char*); + +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_ */ -- cgit v1.1