Make appbridge.cpp compile, even without mISDN support.
[lcr.git] / joinremote.h
index ac86467..a933466 100644 (file)
 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_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);
 
+       unsigned int j_remote_ref;
        int j_remote_id;
        char j_remote_name[32];
-       unsigned long j_epoint_id;
+       unsigned int j_epoint_id;
 };