I'm doing some X11 ctypes coding, I don't know C but need some help understanding this.
In the C code below (might be C++ im not sure) we see (~0L)
what does that mean? In Javascript and Python ~0
means -1
.
812 int result = GetProperty(window, property_name,
813 (~0L), // (all of them)
814 &type, &format, &num_items, &properties);
Thanks