How do I convert this code in c to python with ctypes using the same logic:
(如何使用相同的逻辑使用ctypes将c中的这段代码转换为python:)
unsigned char bf[] = "xc1xeb" //etc....
int (*func)();
func = (int (*)()) (void*)bf;
(int)(*func)();
ask by c dev translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…