{ "metadata": { "name": "chapter-16.ipynb" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "

Chapter 16: C Under Windows

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

The first Windows Program, Page number: 554

" ] }, { "cell_type": "code", "collapsed": false, "input": [ "\n", "import ctypes\n", "MessageBox = ctypes.windll.user32.MessageBoxW\n", "MessageBox(None, 'Hello', 'Title', 0)\n" ], "language": "python", "metadata": {}, "outputs": [ { "output_type": "pyout", "prompt_number": 1, "text": [ "1" ] }, { "output_type": "pyout", "prompt_number": 2, "text": [ "1" ] } ], "prompt_number": 2 }, { "cell_type": "code", "collapsed": false, "input": [], "language": "python", "metadata": {}, "outputs": [] } ], "metadata": {} } ] }