summaryrefslogtreecommitdiffstats
path: root/joinremote.h
diff options
context:
space:
mode:
authorSuper User2007-07-27 20:07:22 +0200
committerSuper User2007-07-27 20:07:22 +0200
commitb5427b9c694cc2c0c1e5361d4cba721c87ad1cac (patch)
tree6def426175d28de5a5020be7b7f01e6835be8a3a /joinremote.h
parentunified socket application interface (for asterisk and maybe other apps) (diff)
downloadlcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.tar.gz
lcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.tar.xz
lcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.zip
fixes, changes, backup
Diffstat (limited to 'joinremote.h')
-rw-r--r--joinremote.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/joinremote.h b/joinremote.h
index d9e7e2b..ac86467 100644
--- a/joinremote.h
+++ b/joinremote.h
@@ -12,13 +12,14 @@
class JoinRemote : public Join
{
public:
- JoinRemote(unsigned long serial, char *remote);
+ JoinRemote(unsigned long serial, char *remote_name, int remote_id);
~JoinRemote();
void message_epoint(unsigned long epoint_id, int message, union parameter *param);
void message_remote(unsigned long ref, int message_type, union parameter *param);
int handler(void);
- char j_remote[32];
+ int j_remote_id;
+ char j_remote_name[32];
unsigned long j_epoint_id;
};