diff options
author | jacomi | 1999-01-25 18:35:13 +0000 |
---|---|---|
committer | jacomi | 1999-01-25 18:35:13 +0000 |
commit | ca51f6abf6debc1b6718f59129886fea04ee12b0 (patch) | |
tree | b074cbd71c73bfa0d39a28f73e19cd8d28a653f6 /irtable.h | |
parent | f63e7d593f9a1ca8152ec8180ac052e75c892a60 (diff) | |
download | irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.zip irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.gz irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.bz2 irbox-ca51f6abf6debc1b6718f59129886fea04ee12b0.tar.xz |
new directory structure and data
Diffstat (limited to 'irtable.h')
-rw-r--r-- | irtable.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/irtable.h b/irtable.h deleted file mode 100644 index fc2ed4d..0000000 --- a/irtable.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * - * 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 <chatty@cenatoulouse.dgac.fr> - * - * $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_ */ |