I need to pass ~0L
to my function, how can I do this, no matter what I do ~0 is being turned to -1
This is the C code:
812 int result = GetProperty(window, property_name,
813 (~0L), // (all of them)
814 &type, &format, &num_items, &properties);
This is my jsctypes:
var result = GetProperty(window, property_name, ctypes.long(~0), type.address(), format.address(), num_items.address(), properties.address()
Notice the ctypes.long(~0)
how to make this be the 111111111111111111111111111111
for 32bit slash the 64 1's for 64bit?
Thanks
reference topic: What does (~0L) mean?
Solution was to use
ctypes.long(~0)
this is good for 32 bit and 64 bit :) Thanks to @arai.