3 lines
66 B
Python
3 lines
66 B
Python
from ctypes import CDLL
|
|
dll = CDLL('ScreenShot.dll')
|
|
dll.PrScrn()
|
from ctypes import CDLL
|
|
dll = CDLL('ScreenShot.dll')
|
|
dll.PrScrn()
|