blob: fe220921e6cad118719f60d24bd88e3e6294eefd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "common.h"
bool ContactHandle::operator==(const ContactHandle &other) const {
return hContact == other.handle();
}
bool ContactHandle::operator<(const ContactHandle &other) const {
//return CallService(MS_CLIST_CONTACTSCOMPARE, (WPARAM)hContact, (LPARAM)other.handle()) < 0;
return hContact < other.handle();
}
|