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;
}
Facing a issue in passing 128 bit Long value to cdll function expecting const unsigned...