summaryrefslogtreecommitdiffstats
path: root/joinremote.h
diff options
context:
space:
mode:
authorSuper User2008-06-14 08:34:50 +0200
committerSuper User2008-06-14 08:34:50 +0200
commitd2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4 (patch)
tree8c9e9504a275a43d5a8785dcca7badf28ada5999 /joinremote.h
parentfixed dialing-bug when dialing chan_lcr (diff)
downloadlcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.tar.gz
lcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.tar.xz
lcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.zip
changed long to int (64 bit system's compatibilty)
Diffstat (limited to 'joinremote.h')
-rw-r--r--joinremote.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/joinremote.h b/joinremote.h
index c0be35a..b837da6 100644
--- a/joinremote.h
+++ b/joinremote.h
@@ -12,16 +12,16 @@
class JoinRemote : public Join
{
public:
- JoinRemote(unsigned long serial, char *remote_name, int remote_id);
+ 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_epoint(unsigned int epoint_id, int message, union parameter *param);
void message_remote(int message_type, union parameter *param);
int handler(void);
int j_remote_id;
char j_remote_name[32];
- unsigned long j_epoint_id;
+ unsigned int j_epoint_id;
};
-void message_bchannel_to_remote(unsigned long remote_id, unsigned long ref, int type, unsigned long handle, int tx_gain, int rx_gain, char *pipeline, unsigned char *crypt, int crypt_len, int crypt_type);
+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);