Chapter 16: C Under Windows

The first Windows Program, Page number: 554

In [2]:
import ctypes
MessageBox = ctypes.windll.user32.MessageBoxW
MessageBox(None, 'Hello', 'Title', 0)
Out[2]:
1
Out[2]:
1
In [ ]: