#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(); }