Code:
from ctypes import*
cdll = "Windll"
var = 0x1fffffffffffffffffffffff # I want to send this long variable to character pointer which is in cdll
cdll.createBuff (var)
cdll function
int createBuff (const unsigned char*){
print charBuff
return 0;
}