摘要:
// 转自: https://blog.csdn.net/Jailman/article/details/77573990import sys import psutil import ctypes from ctypes import * PAGE_EXECUTE_READWRITE = 0x00000040 PROCESS_ALL_ACCESS = ... 阅读全文
摘要:
#python 调用Windows API(使用IDLE开发环境)from ctypes import *msvcrt = cdll.LoadLibrary('msvcrt')for i in 'love': msvcrt.printf(i) #python 调用Windows API(使用VS开发 阅读全文