This method of the ComLib class compares the COM identity of two Java objects. If the two objects have equal IUnknown* pointers, they have the same COM identity.
public static native boolean isEqualUnknown(Object o1, Object o2);
Returns true if the two objects have the same COM identity; otherwise, returns false.
o1 | The first object to be compared. |
o2 | The second object to be compared. |