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
|
/* $Id: hw_mouseremote.h,v 5.2 2005/01/22 10:42:39 lirc Exp $ */
/****************************************************************************
** hw_mouseremote.h ********************************************************
****************************************************************************
*
* routines for X10 MP3 Mouse Remote
*
* Copyright (C) 1999 Christoph Bartelmus <lirc@bartelmus.de>
* modified for logitech receiver by Isaac Lauer <inl101@alumni.psu.edu>
* modified for X10 receiver by Shawn Nycz <dscordia@eden.rutgers.edu>
* modified for X10 MouseRemote by Brian Craft <bcboy@thecraftstudio.com>
*
*/
#ifndef HW_MOUSEREMOTE_H
#define HW_MOUSEREMOTE_H
#include "drivers/lirc.h"
int mouseremote_decode(struct ir_remote *remote,
ir_code *prep,ir_code *codep,ir_code *postp,
int *repeat_flagp,lirc_t *remaining_gapp);
int mouseremote_init(void);
int mouseremote_ps2_init(void);
int mouseremote_deinit(void);
char *mouseremote_rec(struct ir_remote *remotes);
#endif
|