X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=joinremote.h;h=15821332deffc94d5d8fcd063db1de31f5801c9c;hp=d9e7e2bd01ebcb82581992d6dd10fc7fd8e71a37;hb=8a4387be03a34632a6c0cc1d997c74d98f2fb1ae;hpb=701b046a45c2c79cc6d07ac3a4f84f499f7ed376 diff --git a/joinremote.h b/joinremote.h index d9e7e2b..1582133 100644 --- a/joinremote.h +++ b/joinremote.h @@ -12,14 +12,15 @@ class JoinRemote : public Join { public: - JoinRemote(unsigned long serial, char *remote); + JoinRemote(unsigned int 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); + void message_epoint(unsigned int epoint_id, int message, union parameter *param); + void message_remote(int message_type, union parameter *param); - char j_remote[32]; - unsigned long j_epoint_id; + int j_remote_id; + char j_remote_name[32]; + unsigned int j_epoint_id; }; +void message_bchannel_to_remote(unsigned int remote_id, unsigned int ref, int type, unsigned int handle, int tx_gain, int rx_gain, char *pipeline, unsigned char *crypt, int crypt_len, int crypt_type);