Hi,
I need to shift 32 bits in perl.
Like $t=0xe1;
$r=$t<<32;
but it is not working since scalar can hold 32 bits ...can u tell me how to make it work???
i want to send this to postmessage($hnd,$msg,0,$r);
$r should contain yx position....x-32 bit y 32-bits
how to do????