├── Chap01 └── HelloMsg │ ├── Debug │ └── HelloMsg.exe │ ├── HelloMsg.c │ ├── HelloMsg.sln │ ├── HelloMsg.suo │ ├── HelloMsg.vcproj │ └── Release │ └── HelloMsg.exe ├── Chap02 └── ScrnSize │ ├── .vs │ └── ScrnSize │ │ └── v14 │ │ └── .suo │ ├── Backup │ └── ScrnSize.sln │ ├── Backup1 │ └── ScrnSize.sln │ ├── Debug │ └── ScrnSize.exe │ ├── Release │ └── ScrnSize.exe │ ├── ScrnSize.c │ ├── ScrnSize.sln │ ├── ScrnSize.suo │ ├── UpgradeLog.htm │ └── UpgradeLog2.htm ├── Chap03 └── HelloWin │ ├── Debug │ └── HelloWin.exe │ ├── HelloWin.c │ ├── HelloWin.sln │ ├── HelloWin.suo │ ├── HelloWin.vcproj │ ├── HelloWin.wav │ └── Release │ └── HelloWin.exe ├── Chap04 ├── SysMets1 │ ├── Debug │ │ └── SysMets1.exe │ ├── Release │ │ └── SysMets1.exe │ ├── SysMets.h │ ├── SysMets1.c │ ├── SysMets1.sln │ ├── SysMets1.suo │ └── SysMets1.vcproj ├── SysMets2 │ ├── .vs │ │ └── SysMets2 │ │ │ └── v14 │ │ │ └── .suo │ ├── Backup │ │ └── SysMets2.sln │ ├── Debug │ │ ├── SysMets2.exe │ │ ├── SysMets2.ilk │ │ ├── SysMets2.log │ │ ├── SysMets2.obj │ │ ├── SysMets2.pdb │ │ ├── SysMets2.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SysMets2.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ ├── vc140.idb │ │ └── vc140.pdb │ ├── Release │ │ └── SysMets2.exe │ ├── SysMets.h │ ├── SysMets2.VC.db │ ├── SysMets2.c │ ├── SysMets2.sln │ ├── SysMets2.suo │ ├── SysMets2.vcproj │ ├── SysMets2.vcxproj │ └── UpgradeLog.htm └── SysMets3 │ ├── Debug │ └── SysMets3.exe │ ├── Release │ └── SysMets3.exe │ ├── SysMets.h │ ├── SysMets3.c │ ├── SysMets3.sln │ ├── SysMets3.suo │ └── SysMets3.vcproj ├── Chap05 ├── AltWind │ ├── AltWind.c │ ├── AltWind.sln │ ├── AltWind.suo │ ├── AltWind.vcproj │ ├── Debug │ │ └── AltWind.exe │ └── Release │ │ └── AltWind.exe ├── Bezier │ ├── Bezier.c │ ├── Bezier.sln │ ├── Bezier.suo │ ├── Bezier.vcproj │ ├── Debug │ │ └── Bezier.exe │ └── Release │ │ └── Bezier.exe ├── Clover │ ├── .vs │ │ └── Clover │ │ │ └── v14 │ │ │ └── .suo │ ├── Backup │ │ └── Clover.sln │ ├── Clover.VC.db │ ├── Clover.c │ ├── Clover.sln │ ├── Clover.suo │ ├── Clover.vcproj │ ├── Clover.vcxproj │ ├── Debug │ │ ├── Clover.exe │ │ ├── Clover.ilk │ │ ├── Clover.log │ │ ├── Clover.obj │ │ ├── Clover.pdb │ │ ├── Clover.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Clover.lastbuildstate │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ ├── vc140.idb │ │ └── vc140.pdb │ ├── Release │ │ └── Clover.exe │ └── UpgradeLog.htm ├── DevCaps1 │ ├── Debug │ │ └── DevCaps1.exe │ ├── DevCaps1.c │ ├── DevCaps1.sln │ ├── DevCaps1.suo │ ├── DevCaps1.vcproj │ └── Release │ │ └── DevCaps1.exe ├── LineDemo │ ├── Debug │ │ └── LineDemo.exe │ ├── LineDemo.c │ ├── LineDemo.sln │ ├── LineDemo.suo │ ├── LineDemo.vcproj │ └── Release │ │ └── LineDemo.exe ├── RandRect │ ├── Debug │ │ └── RandRect.exe │ ├── RandRect.c │ ├── RandRect.sln │ ├── RandRect.suo │ ├── RandRect.vcproj │ └── Release │ │ └── RandRect.exe ├── SineWave │ ├── Debug │ │ └── SineWave.exe │ ├── Release │ │ └── SineWave.exe │ ├── SineWave.c │ ├── SineWave.sln │ ├── SineWave.suo │ └── SineWave.vcproj └── WhatSize │ ├── Debug │ └── WhatSize.exe │ ├── Release │ └── WhatSize.exe │ ├── WhatSize.c │ ├── WhatSize.sln │ ├── WhatSize.suo │ └── WhatSize.vcproj ├── Chap06 ├── KeyView1 │ ├── Debug │ │ └── KeyView1.exe │ ├── KeyView1.c │ ├── KeyView1.sln │ ├── KeyView1.suo │ ├── KeyView1.vcproj │ └── Release │ │ └── KeyView1.exe ├── KeyView2 │ ├── Debug │ │ └── KeyView2.exe │ ├── KeyView2.c │ ├── KeyView2.sln │ ├── KeyView2.suo │ ├── KeyView2.vcproj │ └── Release │ │ └── KeyView2.exe ├── StokFont │ ├── Debug │ │ └── StokFont.exe │ ├── Release │ │ └── StokFont.exe │ ├── StokFont.c │ ├── StokFont.sln │ ├── StokFont.suo │ └── StokFont.vcproj ├── SysMets4 │ ├── Debug │ │ └── SysMets4.exe │ ├── Release │ │ └── SysMets4.exe │ ├── SysMets.h │ ├── SysMets4.c │ ├── SysMets4.sln │ ├── SysMets4.suo │ └── SysMets4.vcproj └── Typer │ ├── Debug │ └── Typer.exe │ ├── Release │ └── Typer.exe │ ├── Typer.c │ ├── Typer.sln │ ├── Typer.suo │ └── Typer.vcproj ├── Chap07 ├── BlokOut1 │ ├── .vs │ │ └── BlokOut1 │ │ │ └── v14 │ │ │ └── .suo │ ├── Backup │ │ └── BlokOut1.sln │ ├── BlokOut1.VC.db │ ├── BlokOut1.c │ ├── BlokOut1.sln │ ├── BlokOut1.suo │ ├── BlokOut1.vcproj │ ├── BlokOut1.vcxproj │ ├── Debug │ │ ├── BlokOut1.exe │ │ ├── BlokOut1.ilk │ │ ├── BlokOut1.log │ │ ├── BlokOut1.obj │ │ ├── BlokOut1.pdb │ │ ├── BlokOut1.tlog │ │ │ ├── BlokOut1.lastbuildstate │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ ├── vc140.idb │ │ └── vc140.pdb │ ├── Release │ │ └── BlokOut1.exe │ └── UpgradeLog.htm ├── BlokOut2 │ ├── BlokOut2.c │ ├── BlokOut2.sln │ ├── BlokOut2.suo │ ├── BlokOut2.vcproj │ ├── Debug │ │ └── BlokOut2.exe │ └── Release │ │ └── BlokOut2.exe ├── Checker1 │ ├── Checker1.c │ ├── Checker1.sln │ ├── Checker1.suo │ ├── Checker1.vcproj │ ├── Debug │ │ └── Checker1.exe │ └── Release │ │ └── Checker1.exe ├── Checker2 │ ├── Checker2.c │ ├── Checker2.sln │ ├── Checker2.suo │ ├── Checker2.vcproj │ ├── Debug │ │ └── Checker2.exe │ └── Release │ │ └── Checker2.exe ├── Checker3 │ ├── Checker3.c │ ├── Checker3.sln │ ├── Checker3.suo │ ├── Checker3.vcproj │ ├── Debug │ │ └── Checker3.exe │ └── Release │ │ └── Checker3.exe ├── Checker4 │ ├── Checker4.c │ ├── Checker4.sln │ ├── Checker4.suo │ ├── Checker4.vcproj │ ├── Debug │ │ └── Checker4.exe │ └── Release │ │ └── Checker4.exe ├── Connect │ ├── Connect.c │ ├── Connect.sln │ ├── Connect.suo │ ├── Connect.vcproj │ ├── Debug │ │ └── Connect.exe │ └── Release │ │ └── Connect.exe └── SysMets │ ├── Debug │ └── SysMets.exe │ ├── Release │ └── SysMets.exe │ ├── SysMets.c │ ├── SysMets.h │ ├── SysMets.sln │ ├── SysMets.suo │ └── SysMets.vcproj ├── Chap08 ├── Beeper1 │ ├── Beeper1.c │ ├── Beeper1.sln │ ├── Beeper1.suo │ ├── Beeper1.vcproj │ ├── Debug │ │ └── Beeper1.exe │ └── Release │ │ └── Beeper1.exe ├── Beeper2 │ ├── Beeper2.c │ ├── Beeper2.sln │ ├── Beeper2.suo │ ├── Beeper2.vcproj │ ├── Debug │ │ └── Beeper2.exe │ └── Release │ │ └── Beeper2.exe ├── Clock │ ├── Clock.c │ ├── Clock.sln │ ├── Clock.suo │ ├── Clock.vcproj │ ├── Debug │ │ └── Clock.exe │ └── Release │ │ └── Clock.exe ├── DigClock │ ├── Debug │ │ └── DigClock.exe │ ├── DigClock.c │ ├── DigClock.sln │ ├── DigClock.suo │ ├── DigClock.vcproj │ └── Release │ │ └── DigClock.exe └── WhatClr │ ├── Debug │ └── WhatClr.exe │ ├── Release │ └── WhatClr.exe │ ├── WhatClr.c │ ├── WhatClr.sln │ ├── WhatClr.suo │ └── WhatClr.vcproj ├── Chap09 ├── BtnLook │ ├── BtnLook.c │ ├── BtnLook.sln │ ├── BtnLook.suo │ ├── BtnLook.vcproj │ ├── Debug │ │ └── BtnLook.exe │ └── Release │ │ └── BtnLook.exe ├── Colors1 │ ├── Colors1.c │ ├── Colors1.sln │ ├── Colors1.suo │ ├── Colors1.vcproj │ ├── Debug │ │ └── Colors1.exe │ └── Release │ │ └── Colors1.exe ├── Environ │ ├── Debug │ │ └── Environ.exe │ ├── Environ.c │ ├── Environ.sln │ ├── Environ.suo │ ├── Environ.vcproj │ └── Release │ │ └── Environ.exe ├── OwnDraw │ ├── Debug │ │ └── OwnDraw.exe │ ├── OwnDraw.c │ ├── OwnDraw.sln │ ├── OwnDraw.suo │ ├── OwnDraw.vcproj │ └── Release │ │ └── OwnDraw.exe ├── PopPad1 │ ├── Debug │ │ └── PopPad1.exe │ ├── PopPad1.c │ ├── PopPad1.sln │ ├── PopPad1.suo │ ├── PopPad1.vcproj │ └── Release │ │ └── PopPad1.exe └── head │ ├── Debug │ └── head.exe │ ├── Release │ └── head.exe │ ├── head.c │ ├── head.sln │ ├── head.suo │ └── head.vcproj ├── Chap10 ├── IconDemo │ ├── Debug │ │ └── IconDemo.exe │ ├── ICONDEMO.ICO │ ├── IconDemo.c │ ├── IconDemo.rc │ ├── IconDemo.sln │ ├── IconDemo.suo │ ├── IconDemo.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── IconDemo.exe ├── MenuDemo │ ├── Debug │ │ └── MenuDemo.exe │ ├── MenuDemo.c │ ├── MenuDemo.rc │ ├── MenuDemo.sln │ ├── MenuDemo.suo │ ├── MenuDemo.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── MenuDemo.exe ├── NoPopups │ ├── Debug │ │ └── NoPopups.exe │ ├── NoPopups.c │ ├── NoPopups.rc │ ├── NoPopups.sln │ ├── NoPopups.suo │ ├── NoPopups.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── NoPopups.exe ├── PoePoem │ ├── Debug │ │ └── PoePoem.exe │ ├── POEPOEM.ICO │ ├── POEPOEM.TXT │ ├── PoePoem.c │ ├── PoePoem.rc │ ├── PoePoem.sln │ ├── PoePoem.suo │ ├── PoePoem.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── PoePoem.exe ├── PoorMenu │ ├── Debug │ │ └── PoorMenu.exe │ ├── PoorMenu.c │ ├── PoorMenu.sln │ ├── PoorMenu.suo │ ├── PoorMenu.vcproj │ └── Release │ │ └── PoorMenu.exe ├── PopMenu │ ├── Debug │ │ └── PopMenu.exe │ ├── PopMenu.c │ ├── PopMenu.rc │ ├── PopMenu.sln │ ├── PopMenu.suo │ ├── PopMenu.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── PopMenu.exe └── PopPad2 │ ├── Debug │ └── PopPad2.exe │ ├── POPPAD2.ICO │ ├── PopPad2.c │ ├── PopPad2.rc │ ├── PopPad2.sln │ ├── PopPad2.suo │ ├── PopPad2.vcproj │ ├── RESOURCE.H │ └── Release │ └── PopPad2.exe ├── Chap11 ├── About1 │ ├── About1.c │ ├── About1.ico │ ├── About1.rc │ ├── About1.sln │ ├── About1.suo │ ├── About1.vcproj │ ├── Debug │ │ └── About1.exe │ ├── RESOURCE.H │ └── Release │ │ └── About1.exe ├── About2 │ ├── About2.c │ ├── About2.ico │ ├── About2.rc │ ├── About2.sln │ ├── About2.suo │ ├── About2.vcproj │ ├── Debug │ │ └── About2.exe │ ├── RESOURCE.H │ └── Release │ │ └── About2.exe ├── About3 │ ├── About3.c │ ├── About3.rc │ ├── About3.sln │ ├── About3.suo │ ├── About3.vcproj │ ├── Debug │ │ └── About3.exe │ ├── ICON1.ICO │ ├── RESOURCE.H │ └── Release │ │ └── About3.exe ├── Colors2 │ ├── Colors2.c │ ├── Colors2.rc │ ├── Colors2.sln │ ├── Colors2.suo │ ├── Colors2.vcproj │ ├── Debug │ │ └── Colors2.exe │ ├── RESOURCE.H │ └── Release │ │ └── Colors2.exe ├── Colors3 │ ├── Colors3.c │ ├── Colors3.sln │ ├── Colors3.suo │ ├── Colors3.vcproj │ ├── Debug │ │ └── Colors3.exe │ └── Release │ │ └── Colors3.exe ├── HexCalc │ ├── Debug │ │ └── HexCalc.exe │ ├── HexCalc.c │ ├── HexCalc.dlg │ ├── HexCalc.ico │ ├── HexCalc.rc │ ├── HexCalc.sln │ ├── HexCalc.suo │ ├── HexCalc.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── HexCalc.exe └── PopPad3 │ ├── Debug │ └── PopPad3.exe │ ├── POPPAD.ICO │ ├── POPPAD.RC │ ├── PopFile.c │ ├── PopFind.c │ ├── PopFont.c │ ├── PopPad.c │ ├── PopPad3.sln │ ├── PopPad3.suo │ ├── PopPad3.vcproj │ ├── PopPrnt0.c │ ├── RESOURCE.H │ └── Release │ └── PopPad3.exe ├── Chap12 ├── ClipText │ ├── ClipText.c │ ├── ClipText.rc │ ├── ClipText.sln │ ├── ClipText.suo │ ├── ClipText.vcproj │ ├── Debug │ │ └── ClipText.exe │ ├── RESOURCE.H │ └── Release │ │ └── ClipText.exe └── ClipView │ ├── ClipView.c │ ├── ClipView.sln │ ├── ClipView.suo │ ├── ClipView.vcproj │ ├── Debug │ └── ClipView.exe │ └── Release │ └── ClipView.exe ├── Chap13 ├── DevCaps2 │ ├── Debug │ │ └── DevCaps2.exe │ ├── DevCaps2.c │ ├── DevCaps2.rc │ ├── DevCaps2.sln │ ├── DevCaps2.suo │ ├── DevCaps2.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── DevCaps2.exe ├── FormFeed │ ├── Debug │ │ └── FormFeed.exe │ ├── FormFeed.c │ ├── FormFeed.sln │ ├── FormFeed.suo │ ├── FormFeed.vcproj │ └── Release │ │ └── FormFeed.exe ├── PopPad │ ├── Debug │ │ └── PopPad.exe │ ├── POPPAD.ICO │ ├── POPPAD.RC │ ├── PopFile.c │ ├── PopFind.c │ ├── PopFont.c │ ├── PopPad.c │ ├── PopPad.vcproj │ ├── PopPrnt.c │ ├── Poppad.sln │ ├── Poppad.suo │ ├── RESOURCE.H │ └── Release │ │ └── PopPad.exe ├── Print1 │ ├── Debug │ │ └── Print1.exe │ ├── GetPrnDC.c │ ├── Print.c │ ├── Print1.c │ ├── Print1.sln │ ├── Print1.suo │ ├── Print1.vcproj │ └── Release │ │ └── Print1.exe ├── Print2 │ ├── Debug │ │ └── Print2.exe │ ├── Print2.c │ ├── Print2.sln │ ├── Print2.suo │ ├── Print2.vcproj │ └── Release │ │ └── Print2.exe └── Print3 │ ├── Debug │ └── Print3.exe │ ├── Print.rc │ ├── Print3.c │ ├── Print3.sln │ ├── Print3.suo │ ├── Print3.vcproj │ ├── RESOURCE.H │ └── Release │ └── Print3.exe ├── Chap14 ├── BitBlt │ ├── BitBlt.c │ ├── BitBlt.sln │ ├── BitBlt.suo │ ├── BitBlt.vcproj │ ├── Debug │ │ └── BitBlt.exe │ └── Release │ │ └── BitBlt.exe ├── BitMask │ ├── BitMask.c │ ├── BitMask.rc │ ├── BitMask.sln │ ├── BitMask.suo │ ├── BitMask.vcproj │ ├── Debug │ │ └── BitMask.exe │ ├── Matthew.bmp │ ├── RESOURCE.H │ └── Release │ │ └── BitMask.exe ├── Blowup │ ├── Blowup.c │ ├── Blowup.rc │ ├── Blowup.sln │ ├── Blowup.suo │ ├── Blowup.vcproj │ ├── Debug │ │ └── Blowup.exe │ ├── RESOURCE.H │ └── Release │ │ └── Blowup.exe ├── Bounce │ ├── Bounce.c │ ├── Bounce.cpp │ ├── Bounce.sln │ ├── Bounce.suo │ ├── Bounce.vcproj │ ├── Debug │ │ └── Bounce.exe │ └── Release │ │ └── Bounce.exe ├── Bricks1 │ ├── Bricks.bmp │ ├── Bricks1.c │ ├── Bricks1.rc │ ├── Bricks1.sln │ ├── Bricks1.suo │ ├── Bricks1.vcproj │ ├── Debug │ │ └── Bricks1.exe │ ├── RESOURCE.H │ └── Release │ │ └── Bricks1.exe ├── Bricks2 │ ├── Bricks2.c │ ├── Bricks2.sln │ ├── Bricks2.suo │ ├── Bricks2.vcproj │ ├── Debug │ │ └── Bricks2.exe │ └── Release │ │ └── Bricks2.exe ├── Bricks3 │ ├── BRICKS3.C │ ├── BRICKS3.RC │ ├── Bricks.bmp │ ├── Bricks3.sln │ ├── Bricks3.suo │ ├── Bricks3.vcproj │ ├── Debug │ │ └── Bricks3.exe │ ├── RESOURCE.H │ └── Release │ │ └── Bricks3.exe ├── GrafMenu │ ├── Bighelp.bmp │ ├── Debug │ │ └── GrafMenu.exe │ ├── Editlabl.bmp │ ├── Filelabl.bmp │ ├── Fontlabl.bmp │ ├── GrafMenu.c │ ├── GrafMenu.rc │ ├── GrafMenu.sln │ ├── GrafMenu.suo │ ├── GrafMenu.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── GrafMenu.exe ├── HelloBit │ ├── Debug │ │ └── HelloBit.exe │ ├── HelloBit.c │ ├── HelloBit.rc │ ├── HelloBit.sln │ ├── HelloBit.suo │ ├── HelloBit.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── HelloBit.exe ├── Scramble │ ├── Debug │ │ └── Scramble.exe │ ├── Release │ │ └── Scramble.exe │ ├── Scramble.c │ ├── Scramble.sln │ ├── Scramble.suo │ └── Scramble.vcproj ├── Sketch │ ├── Debug │ │ └── Sketch.exe │ ├── Release │ │ └── Sketch.exe │ ├── Sketch.c │ ├── Sketch.sln │ ├── Sketch.suo │ └── Sketch.vcproj └── Stretch │ ├── Debug │ └── Stretch.exe │ ├── Release │ └── Stretch.exe │ ├── Stretch.c │ ├── Stretch.sln │ ├── Stretch.suo │ └── Stretch.vcproj ├── Chap15 ├── Apollo11 │ ├── Apollo11.bmp │ ├── Apollo11.c │ ├── Apollo11.sln │ ├── Apollo11.suo │ ├── Apollo11.vcproj │ ├── ApolloTD.bmp │ ├── Debug │ │ └── Apollo11.exe │ ├── DibFile.h │ └── Release │ │ └── Apollo11.exe ├── DibConv │ ├── Debug │ │ └── DibConv.exe │ ├── DibConv.c │ ├── DibConv.rc │ ├── DibConv.sln │ ├── DibConv.suo │ ├── DibConv.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── DibConv.exe ├── DibHeads │ ├── Debug │ │ └── DibHeads.exe │ ├── DibHeads.c │ ├── DibHeads.rc │ ├── DibHeads.sln │ ├── DibHeads.suo │ ├── DibHeads.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── DibHeads.exe ├── DibSect │ ├── Debug │ │ └── DibSect.exe │ ├── DibSect.c │ ├── DibSect.rc │ ├── DibSect.sln │ ├── DibSect.suo │ ├── DibSect.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── DibSect.exe ├── SeqDisp │ ├── Debug │ │ └── SeqDisp.exe │ ├── RESOURCE.H │ ├── Release │ │ └── SeqDisp.exe │ ├── SeqDisp.c │ ├── SeqDisp.rc │ ├── SeqDisp.sln │ ├── SeqDisp.suo │ └── SeqDisp.vcproj ├── ShowDib1 │ ├── Debug │ │ └── ShowDib1.exe │ ├── DibFile.c │ ├── DibFile.h │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib1.exe │ ├── ShowDib1.c │ ├── ShowDib1.rc │ ├── ShowDib1.sln │ ├── ShowDib1.suo │ └── ShowDib1.vcproj └── ShowDib2 │ ├── Debug │ └── ShowDib2.exe │ ├── DibFile.c │ ├── DibFile.h │ ├── RESOURCE.H │ ├── Release │ └── ShowDib2.exe │ ├── ShowDib2.rc │ ├── ShowDib2.vcproj │ ├── Showdib2.c │ ├── Showdib2.sln │ └── Showdib2.suo ├── Chap16 ├── AllColor │ ├── AllColor.c │ ├── AllColor.sln │ ├── AllColor.suo │ ├── AllColor.vcproj │ ├── Debug │ │ └── AllColor.exe │ └── Release │ │ └── AllColor.exe ├── Bounce │ ├── Bounce.c │ ├── Bounce.sln │ ├── Bounce.suo │ ├── Bounce.vcproj │ ├── Debug │ │ └── Bounce.exe │ ├── PalAnim.c │ └── Release │ │ └── Bounce.exe ├── Dibble │ ├── Debug │ │ └── Dibble.exe │ ├── DibConv.c │ ├── DibConv.h │ ├── DibHelp.c │ ├── DibHelp.h │ ├── DibPal.c │ ├── DibPal.h │ ├── Dibble.c │ ├── Dibble.rc │ ├── Dibble.sln │ ├── Dibble.suo │ ├── Dibble.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── Dibble.exe ├── Fader │ ├── Debug │ │ └── Fader.exe │ ├── Fader.c │ ├── Fader.sln │ ├── Fader.suo │ ├── Fader.vcproj │ └── Release │ │ └── Fader.exe ├── Grays1 │ ├── Debug │ │ └── Grays1.exe │ ├── Grays1.c │ ├── Grays1.sln │ ├── Grays1.suo │ ├── Grays1.vcproj │ └── Release │ │ └── Grays1.exe ├── Grays2 │ ├── Debug │ │ └── Grays2.exe │ ├── Grays2.c │ ├── Grays2.sln │ ├── Grays2.suo │ ├── Grays2.vcproj │ └── Release │ │ └── Grays2.exe ├── Grays3 │ ├── Debug │ │ └── Grays3.exe │ ├── Grays3.c │ ├── Grays3.sln │ ├── Grays3.suo │ ├── Grays3.vcproj │ └── Release │ │ └── Grays3.exe ├── Pipes │ ├── Debug │ │ └── Pipes.exe │ ├── Pipes.c │ ├── Pipes.sln │ ├── Pipes.suo │ ├── Pipes.vcproj │ └── Release │ │ └── Pipes.exe ├── ShowDib3 │ ├── Debug │ │ └── ShowDib3.exe │ ├── PackeDib.c │ ├── PackeDib.h │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib3.exe │ ├── ShowDib3.c │ ├── ShowDib3.rc │ ├── ShowDib3.sln │ ├── ShowDib3.suo │ └── ShowDib3.vcproj ├── ShowDib4 │ ├── Debug │ │ └── ShowDib4.exe │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib4.exe │ ├── ShowDib4.c │ ├── ShowDib4.rc │ ├── ShowDib4.sln │ ├── ShowDib4.suo │ └── ShowDib4.vcproj ├── ShowDib5 │ ├── Debug │ │ └── ShowDib5.exe │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib5.exe │ ├── ShowDib5.c │ ├── ShowDib5.rc │ ├── ShowDib5.sln │ ├── ShowDib5.suo │ └── ShowDib5.vcproj ├── ShowDib6 │ ├── Debug │ │ └── ShowDib6.exe │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib6.exe │ ├── ShowDib6.c │ ├── ShowDib6.rc │ ├── ShowDib6.sln │ ├── ShowDib6.suo │ └── ShowDib6.vcproj ├── ShowDib7 │ ├── Debug │ │ └── ShowDib7.exe │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib7.exe │ ├── ShowDib7.c │ ├── ShowDib7.rc │ ├── ShowDib7.sln │ ├── ShowDib7.suo │ └── ShowDib7.vcproj ├── ShowDib8 │ ├── Debug │ │ └── ShowDib8.exe │ ├── RESOURCE.H │ ├── Release │ │ └── ShowDib8.exe │ ├── ShowDib8.c │ ├── ShowDib8.rc │ ├── ShowDib8.sln │ ├── ShowDib8.suo │ └── ShowDib8.vcproj ├── SysPal1 │ ├── Debug │ │ └── SysPal1.exe │ ├── Release │ │ └── SysPal1.exe │ ├── SysPal1.c │ ├── SysPal1.sln │ ├── SysPal1.suo │ └── SysPal1.vcproj ├── SysPal2 │ ├── Debug │ │ └── SysPal2.exe │ ├── Release │ │ └── SysPal2.exe │ ├── SysPal2.c │ ├── SysPal2.sln │ ├── SysPal2.suo │ └── SysPal2.vcproj ├── SysPal3 │ ├── Debug │ │ └── SysPal3.exe │ ├── Release │ │ └── SysPal3.exe │ ├── SysPal3.c │ ├── SysPal3.sln │ ├── SysPal3.suo │ └── SysPal3.vcproj └── Tunnel │ ├── Debug │ └── Tunnel.exe │ ├── Release │ └── Tunnel.exe │ ├── Tunnel.c │ ├── Tunnel.sln │ ├── Tunnel.suo │ └── Tunnel.vcproj ├── Chap17 ├── ChosFont │ ├── ChosFont.c │ ├── ChosFont.rc │ ├── ChosFont.sln │ ├── ChosFont.suo │ ├── ChosFont.vcproj │ ├── Debug │ │ └── ChosFont.exe │ ├── RESOURCE.H │ └── Release │ │ └── ChosFont.exe ├── EZTest │ ├── Debug │ │ └── EZTest.exe │ ├── EZFont.c │ ├── EZFont.h │ ├── EZTest.c │ ├── EZTest.sln │ ├── EZTest.suo │ ├── EZTest.vcproj │ ├── FontDemo.c │ ├── FontDemo.rc │ ├── RESOURCE.H │ └── Release │ │ └── EZTest.exe ├── EndJoin │ ├── Debug │ │ └── EndJoin.exe │ ├── EndJoin.c │ ├── EndJoin.sln │ ├── EndJoin.suo │ ├── EndJoin.vcproj │ └── Release │ │ └── EndJoin.exe ├── FontClip │ ├── Debug │ │ └── FontClip.exe │ ├── FontClip.c │ ├── FontClip.sln │ ├── FontClip.suo │ ├── FontClip.vcproj │ └── Release │ │ └── FontClip.exe ├── FontFill │ ├── Debug │ │ └── FontFill.exe │ ├── FontFill.c │ ├── FontFill.sln │ ├── FontFill.suo │ ├── FontFill.vcproj │ └── Release │ │ └── FontFill.exe ├── FontOut1 │ ├── Debug │ │ └── FontOut1.exe │ ├── FontOut1.c │ ├── FontOut1.sln │ ├── FontOut1.suo │ ├── FontOut1.vcproj │ └── Release │ │ └── FontOut1.exe ├── FontOut2 │ ├── Debug │ │ └── FontOut2.exe │ ├── FontOut2.c │ ├── FontOut2.sln │ ├── FontOut2.suo │ ├── FontOut2.vcproj │ └── Release │ │ └── FontOut2.exe ├── FontRot │ ├── Debug │ │ └── FontRot.exe │ ├── FontRot.c │ ├── FontRot.sln │ ├── FontRot.suo │ ├── FontRot.vcproj │ └── Release │ │ └── FontRot.exe ├── Justify1 │ ├── Debug │ │ └── Justify1.exe │ ├── Justify1.c │ ├── Justify1.rc │ ├── Justify1.sln │ ├── Justify1.suo │ ├── Justify1.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── Justify1.exe ├── Justify2 │ ├── Debug │ │ └── Justify2.exe │ ├── Justify2.c │ ├── Justify2.rc │ ├── Justify2.sln │ ├── Justify2.suo │ ├── Justify2.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── Justify2.exe ├── PickFont │ ├── Debug │ │ └── PickFont.exe │ ├── PickFont.c │ ├── PickFont.rc │ ├── PickFont.sln │ ├── PickFont.suo │ ├── PickFont.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── PickFont.exe └── UniChars │ ├── Debug │ └── Unichars.exe │ ├── RESOURCE.H │ ├── Release │ └── Unichars.exe │ ├── Unichars.c │ ├── Unichars.rc │ ├── Unichars.sln │ ├── Unichars.suo │ └── Unichars.vcproj ├── Chap18 ├── Emf1 │ ├── Debug │ │ └── Emf1.exe │ ├── Emf1.c │ ├── Emf1.sln │ ├── Emf1.suo │ ├── Emf1.vcproj │ └── Release │ │ └── Emf1.exe ├── Emf10 │ ├── Debug │ │ └── Emf10.exe │ ├── Emf10.c │ ├── Emf10.sln │ ├── Emf10.suo │ ├── Emf10.vcproj │ └── Release │ │ └── Emf10.exe ├── Emf11 │ ├── Debug │ │ └── Emf11.exe │ ├── Emf11.c │ ├── Emf11.sln │ ├── Emf11.suo │ ├── Emf11.vcproj │ └── Release │ │ └── Emf11.exe ├── Emf12 │ ├── Debug │ │ └── Emf12.exe │ ├── Emf12.c │ ├── Emf12.sln │ ├── Emf12.suo │ ├── Emf12.vcproj │ └── Release │ │ └── Emf12.exe ├── Emf13 │ ├── Debug │ │ └── Emf13.exe │ ├── Emf13.c │ ├── Emf13.sln │ ├── Emf13.suo │ ├── Emf13.vcproj │ └── Release │ │ └── Emf13.exe ├── Emf2 │ ├── Debug │ │ └── Emf2.exe │ ├── Emf2.c │ ├── Emf2.sln │ ├── Emf2.suo │ ├── Emf2.vcproj │ └── Release │ │ └── Emf2.exe ├── Emf3 │ ├── Debug │ │ └── Emf3.exe │ ├── Emf3.c │ ├── Emf3.sln │ ├── Emf3.suo │ ├── Emf3.vcproj │ └── Release │ │ └── Emf3.exe ├── Emf4 │ ├── Debug │ │ └── Emf4.exe │ ├── Emf4.c │ ├── Emf4.sln │ ├── Emf4.suo │ ├── Emf4.vcproj │ └── Release │ │ └── Emf4.exe ├── Emf5 │ ├── Debug │ │ └── Emf5.exe │ ├── Emf5.c │ ├── Emf5.sln │ ├── Emf5.suo │ ├── Emf5.vcproj │ └── Release │ │ └── Emf5.exe ├── Emf6 │ ├── Debug │ │ └── Emf6.exe │ ├── Emf6.c │ ├── Emf6.sln │ ├── Emf6.suo │ ├── Emf6.vcproj │ └── Release │ │ └── Emf6.exe ├── Emf7 │ ├── Debug │ │ └── Emf7.exe │ ├── Emf7.c │ ├── Emf7.sln │ ├── Emf7.suo │ ├── Emf7.vcproj │ └── Release │ │ └── Emf7.exe ├── Emf8 │ ├── Debug │ │ └── Emf8.exe │ ├── Emf.c │ ├── Emf.rc │ ├── Emf8.c │ ├── Emf8.sln │ ├── Emf8.suo │ ├── Emf8.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── Emf8.exe ├── Emf9 │ ├── Debug │ │ └── Emf9.exe │ ├── Emf9.c │ ├── Emf9.sln │ ├── Emf9.suo │ ├── Emf9.vcproj │ └── Release │ │ └── Emf9.exe ├── EmfView │ ├── Debug │ │ └── EmfView.exe │ ├── EmfView.c │ ├── EmfView.rc │ ├── EmfView.sln │ ├── EmfView.suo │ ├── EmfView.vcproj │ ├── RESOURCE.H │ └── Release │ │ └── EmfView.exe └── Metafile │ ├── Debug │ └── Metafile.exe │ ├── Metafile.c │ ├── Metafile.sln │ ├── Metafile.suo │ ├── Metafile.vcproj │ └── Release │ └── Metafile.exe ├── Chap19 └── MDIDemo │ ├── Debug │ └── MDIDemo.exe │ ├── MDIDemo.c │ ├── MDIDemo.rc │ ├── MDIDemo.sln │ ├── MDIDemo.suo │ ├── MDIDemo.vcproj │ ├── RESOURCE.H │ └── Release │ └── MDIDemo.exe ├── Chap20 ├── BigJob1 │ ├── BigJob1.c │ ├── BigJob1.sln │ ├── BigJob1.suo │ ├── BigJob1.vcproj │ ├── Debug │ │ └── BigJob1.exe │ └── Release │ │ └── BigJob1.exe ├── BigJob2 │ ├── BigJob2.c │ ├── BigJob2.sln │ ├── BigJob2.suo │ ├── BigJob2.vcproj │ ├── Debug │ │ └── BigJob2.exe │ └── Release │ │ └── BigJob2.exe ├── Multi1 │ ├── Debug │ │ └── Multi1.exe │ ├── Multi1.c │ ├── Multi1.sln │ ├── Multi1.suo │ ├── Multi1.vcproj │ └── Release │ │ └── Multi1.exe ├── Multi2 │ ├── Debug │ │ └── Multi2.exe │ ├── Multi2.c │ ├── Multi2.sln │ ├── Multi2.suo │ ├── Multi2.vcproj │ └── Release │ │ └── Multi2.exe └── RndRctMT │ ├── Debug │ └── RndRctMT.exe │ ├── Release │ └── RndRctMT.exe │ ├── RndRctMT.c │ ├── RndRctMT.sln │ ├── RndRctMT.suo │ └── RndRctMT.vcproj ├── Chap21 ├── EdrTest │ ├── Debug │ │ ├── EdrLib.dll │ │ └── EdrTest.exe │ ├── EdrLib.c │ ├── EdrLib.h │ ├── EdrLib.vcproj │ ├── EdrTest.c │ ├── EdrTest.sln │ ├── EdrTest.suo │ ├── EdrTest.vcproj │ └── Release │ │ ├── EdrLib.dll │ │ └── EdrTest.exe ├── ShowBit │ ├── BITMAP1.BMP │ ├── BITMAP2.BMP │ ├── BITMAP3.BMP │ ├── BITMAP4.BMP │ ├── BITMAP5.BMP │ ├── BITMAP6.BMP │ ├── BITMAP7.BMP │ ├── BITMAP8.BMP │ ├── BITMAP9.BMP │ ├── BitLib.c │ ├── BitLib.rc │ ├── BitLib.vcproj │ ├── Debug │ │ ├── BitLib.dll │ │ └── ShowBit.exe │ ├── RESOURCE.H │ ├── Release │ │ ├── BitLib.dll │ │ └── ShowBit.exe │ ├── ShowBit.c │ ├── ShowBit.sln │ ├── ShowBit.suo │ └── ShowBit.vcproj └── StrProg │ ├── Debug │ ├── StrLib.dll │ └── StrProg.exe │ ├── RESOURCE.H │ ├── Release │ ├── StrLib.dll │ └── StrProg.exe │ ├── StrLib.c │ ├── StrLib.h │ ├── StrLib.vcproj │ ├── StrProg.c │ ├── StrProg.rc │ ├── StrProg.sln │ ├── StrProg.suo │ └── StrProg.vcproj ├── Chap22 ├── AddSynth │ ├── AddSynth.c │ ├── AddSynth.h │ ├── AddSynth.rc │ ├── AddSynth.sln │ ├── AddSynth.suo │ ├── AddSynth.vcproj │ ├── Clarinet.wav │ ├── Debug │ │ └── AddSynth.exe │ ├── Oboe.wav │ ├── RESOURCE.H │ ├── Release │ │ └── AddSynth.exe │ └── Trumpet.wav ├── BachTocc │ ├── BachTocc.c │ ├── BachTocc.sln │ ├── BachTocc.suo │ ├── BachTocc.vcproj │ ├── Debug │ │ └── BachTocc.exe │ └── Release │ │ └── BachTocc.exe ├── Drum │ ├── DRUM.ICO │ ├── Debug │ │ └── Drum.exe │ ├── Drum.c │ ├── Drum.rc │ ├── Drum.sln │ ├── Drum.suo │ ├── Drum.vcproj │ ├── DrumFile.c │ ├── DrumFile.h │ ├── DrumTime.c │ ├── DrumTime.h │ ├── RESOURCE.H │ └── Release │ │ └── Drum.exe ├── KBMidi │ ├── Debug │ │ └── KBMidi.exe │ ├── KBMidi.c │ ├── KBMidi.sln │ ├── KBMidi.suo │ ├── KBMidi.vcproj │ └── Release │ │ └── KBMidi.exe ├── Record1 │ ├── Debug │ │ └── Record1.exe │ ├── RESOURCE.H │ ├── Record.rc │ ├── Record1.c │ ├── Record1.sln │ ├── Record1.suo │ ├── Record1.vcproj │ └── Release │ │ └── Record1.exe ├── Record2 │ ├── Debug │ │ └── Record2.exe │ ├── Record2.c │ ├── Record2.sln │ ├── Record2.suo │ ├── Record2.vcproj │ └── Release │ │ └── Record2.exe ├── Record3 │ ├── Debug │ │ └── Record3.exe │ ├── Record3.c │ ├── Record3.sln │ ├── Record3.suo │ ├── Record3.vcproj │ └── Release │ │ └── Record3.exe ├── SineWave │ ├── Debug │ │ └── SineWave.exe │ ├── RESOURCE.H │ ├── Release │ │ └── SineWave.exe │ ├── SineWave.c │ ├── SineWave.rc │ ├── SineWave.sln │ ├── SineWave.suo │ └── SineWave.vcproj ├── TestMci │ ├── Debug │ │ └── TestMci.exe │ ├── RESOURCE.H │ ├── Release │ │ └── TestMci.exe │ ├── TestMci.c │ ├── TestMci.rc │ ├── TestMci.sln │ ├── TestMci.suo │ └── TestMci.vcproj └── WakeUp │ ├── Debug │ └── WakeUp.exe │ ├── Release │ └── WakeUp.exe │ ├── WakeUp.c │ ├── WakeUp.sln │ ├── WakeUp.suo │ └── WakeUp.vcproj ├── Chap23 ├── NetTime │ ├── Debug │ │ └── NetTime.exe │ ├── NetTime.c │ ├── NetTime.rc │ ├── NetTime.sln │ ├── NetTime.suo │ ├── NetTime.vcproj │ ├── Release │ │ └── NetTime.exe │ └── resource.h └── UpdDemo │ ├── Debug │ └── UpdDemo.exe │ ├── Release │ └── UpdDemo.exe │ ├── UpdDemo.c │ ├── UpdDemo.rc │ ├── UpdDemo.sln │ ├── UpdDemo.suo │ ├── UpdDemo.vcproj │ └── resource.h ├── EULA.txt └── Readme.txt /Chap01/HelloMsg/Debug/HelloMsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap01/HelloMsg/Debug/HelloMsg.exe -------------------------------------------------------------------------------- /Chap01/HelloMsg/HelloMsg.c: -------------------------------------------------------------------------------- 1 | /*-------------------------------------------------------------- 2 | HelloMsg.c -- Displays "Hello, Windows 98!" in a message box 3 | (c) Charles Petzold, 1998 4 | --------------------------------------------------------------*/ 5 | 6 | #include 7 | 8 | int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, 9 | PSTR szCmdLine, int iCmdShow) 10 | { 11 | MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), 0) ; 12 | 13 | return 0 ; 14 | } 15 | -------------------------------------------------------------------------------- /Chap01/HelloMsg/HelloMsg.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap01/HelloMsg/HelloMsg.suo -------------------------------------------------------------------------------- /Chap01/HelloMsg/Release/HelloMsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap01/HelloMsg/Release/HelloMsg.exe -------------------------------------------------------------------------------- /Chap02/ScrnSize/.vs/ScrnSize/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/.vs/ScrnSize/v14/.suo -------------------------------------------------------------------------------- /Chap02/ScrnSize/Debug/ScrnSize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/Debug/ScrnSize.exe -------------------------------------------------------------------------------- /Chap02/ScrnSize/Release/ScrnSize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/Release/ScrnSize.exe -------------------------------------------------------------------------------- /Chap02/ScrnSize/ScrnSize.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/ScrnSize.suo -------------------------------------------------------------------------------- /Chap02/ScrnSize/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/UpgradeLog.htm -------------------------------------------------------------------------------- /Chap02/ScrnSize/UpgradeLog2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap02/ScrnSize/UpgradeLog2.htm -------------------------------------------------------------------------------- /Chap03/HelloWin/Debug/HelloWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap03/HelloWin/Debug/HelloWin.exe -------------------------------------------------------------------------------- /Chap03/HelloWin/HelloWin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap03/HelloWin/HelloWin.suo -------------------------------------------------------------------------------- /Chap03/HelloWin/HelloWin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap03/HelloWin/HelloWin.wav -------------------------------------------------------------------------------- /Chap03/HelloWin/Release/HelloWin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap03/HelloWin/Release/HelloWin.exe -------------------------------------------------------------------------------- /Chap04/SysMets1/Debug/SysMets1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets1/Debug/SysMets1.exe -------------------------------------------------------------------------------- /Chap04/SysMets1/Release/SysMets1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets1/Release/SysMets1.exe -------------------------------------------------------------------------------- /Chap04/SysMets1/SysMets1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets1/SysMets1.suo -------------------------------------------------------------------------------- /Chap04/SysMets2/.vs/SysMets2/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/.vs/SysMets2/v14/.suo -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.exe -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.ilk -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.log: -------------------------------------------------------------------------------- 1 |  SysMets2.c 2 | SysMets2.obj : warning LNK4075: 忽略“/EDITANDCONTINUE”(由于“/SAFESEH”规范) 3 | SysMets2.vcxproj -> C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap04\SysMets2\.\Debug\SysMets2.exe 4 | SysMets2.vcxproj -> .\Debug/SysMets2.pdb (Full PDB) 5 | -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.obj -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.pdb -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/SysMets2.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap04\SysMets2\| 3 | -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/SysMets2.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/SysMets2.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/vc140.idb -------------------------------------------------------------------------------- /Chap04/SysMets2/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Debug/vc140.pdb -------------------------------------------------------------------------------- /Chap04/SysMets2/Release/SysMets2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/Release/SysMets2.exe -------------------------------------------------------------------------------- /Chap04/SysMets2/SysMets2.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/SysMets2.VC.db -------------------------------------------------------------------------------- /Chap04/SysMets2/SysMets2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/SysMets2.suo -------------------------------------------------------------------------------- /Chap04/SysMets2/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets2/UpgradeLog.htm -------------------------------------------------------------------------------- /Chap04/SysMets3/Debug/SysMets3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets3/Debug/SysMets3.exe -------------------------------------------------------------------------------- /Chap04/SysMets3/Release/SysMets3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets3/Release/SysMets3.exe -------------------------------------------------------------------------------- /Chap04/SysMets3/SysMets3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap04/SysMets3/SysMets3.suo -------------------------------------------------------------------------------- /Chap05/AltWind/AltWind.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/AltWind/AltWind.suo -------------------------------------------------------------------------------- /Chap05/AltWind/Debug/AltWind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/AltWind/Debug/AltWind.exe -------------------------------------------------------------------------------- /Chap05/AltWind/Release/AltWind.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/AltWind/Release/AltWind.exe -------------------------------------------------------------------------------- /Chap05/Bezier/Bezier.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Bezier", "Bezier.vcproj", "{6EB4CFDF-5946-497E-BB63-FB7D91796842}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {6EB4CFDF-5946-497E-BB63-FB7D91796842}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {6EB4CFDF-5946-497E-BB63-FB7D91796842}.Debug|Win32.Build.0 = Debug|Win32 14 | {6EB4CFDF-5946-497E-BB63-FB7D91796842}.Release|Win32.ActiveCfg = Release|Win32 15 | {6EB4CFDF-5946-497E-BB63-FB7D91796842}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap05/Bezier/Bezier.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Bezier/Bezier.suo -------------------------------------------------------------------------------- /Chap05/Bezier/Debug/Bezier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Bezier/Debug/Bezier.exe -------------------------------------------------------------------------------- /Chap05/Bezier/Release/Bezier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Bezier/Release/Bezier.exe -------------------------------------------------------------------------------- /Chap05/Clover/.vs/Clover/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/.vs/Clover/v14/.suo -------------------------------------------------------------------------------- /Chap05/Clover/Clover.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Clover.VC.db -------------------------------------------------------------------------------- /Chap05/Clover/Clover.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Clover.suo -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.exe -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.ilk -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.log: -------------------------------------------------------------------------------- 1 |  Clover.c 2 | Clover.obj : warning LNK4075: 忽略“/EDITANDCONTINUE”(由于“/SAFESEH”规范) 3 | Clover.vcxproj -> C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap05\Clover\.\Debug\Clover.exe 4 | Clover.vcxproj -> .\Debug/Clover.pdb (Full PDB) 5 | -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.obj -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.pdb -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/Clover.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap05\Clover\| 3 | -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/Clover.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/Clover.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Chap05/Clover/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/vc140.idb -------------------------------------------------------------------------------- /Chap05/Clover/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Debug/vc140.pdb -------------------------------------------------------------------------------- /Chap05/Clover/Release/Clover.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/Release/Clover.exe -------------------------------------------------------------------------------- /Chap05/Clover/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/Clover/UpgradeLog.htm -------------------------------------------------------------------------------- /Chap05/DevCaps1/Debug/DevCaps1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/DevCaps1/Debug/DevCaps1.exe -------------------------------------------------------------------------------- /Chap05/DevCaps1/DevCaps1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/DevCaps1/DevCaps1.suo -------------------------------------------------------------------------------- /Chap05/DevCaps1/Release/DevCaps1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/DevCaps1/Release/DevCaps1.exe -------------------------------------------------------------------------------- /Chap05/LineDemo/Debug/LineDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/LineDemo/Debug/LineDemo.exe -------------------------------------------------------------------------------- /Chap05/LineDemo/LineDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/LineDemo/LineDemo.suo -------------------------------------------------------------------------------- /Chap05/LineDemo/Release/LineDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/LineDemo/Release/LineDemo.exe -------------------------------------------------------------------------------- /Chap05/RandRect/Debug/RandRect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/RandRect/Debug/RandRect.exe -------------------------------------------------------------------------------- /Chap05/RandRect/RandRect.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/RandRect/RandRect.suo -------------------------------------------------------------------------------- /Chap05/RandRect/Release/RandRect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/RandRect/Release/RandRect.exe -------------------------------------------------------------------------------- /Chap05/SineWave/Debug/SineWave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/SineWave/Debug/SineWave.exe -------------------------------------------------------------------------------- /Chap05/SineWave/Release/SineWave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/SineWave/Release/SineWave.exe -------------------------------------------------------------------------------- /Chap05/SineWave/SineWave.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/SineWave/SineWave.suo -------------------------------------------------------------------------------- /Chap05/WhatSize/Debug/WhatSize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/WhatSize/Debug/WhatSize.exe -------------------------------------------------------------------------------- /Chap05/WhatSize/Release/WhatSize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/WhatSize/Release/WhatSize.exe -------------------------------------------------------------------------------- /Chap05/WhatSize/WhatSize.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap05/WhatSize/WhatSize.suo -------------------------------------------------------------------------------- /Chap06/KeyView1/Debug/KeyView1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView1/Debug/KeyView1.exe -------------------------------------------------------------------------------- /Chap06/KeyView1/KeyView1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView1/KeyView1.suo -------------------------------------------------------------------------------- /Chap06/KeyView1/Release/KeyView1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView1/Release/KeyView1.exe -------------------------------------------------------------------------------- /Chap06/KeyView2/Debug/KeyView2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView2/Debug/KeyView2.exe -------------------------------------------------------------------------------- /Chap06/KeyView2/KeyView2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView2/KeyView2.suo -------------------------------------------------------------------------------- /Chap06/KeyView2/Release/KeyView2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/KeyView2/Release/KeyView2.exe -------------------------------------------------------------------------------- /Chap06/StokFont/Debug/StokFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/StokFont/Debug/StokFont.exe -------------------------------------------------------------------------------- /Chap06/StokFont/Release/StokFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/StokFont/Release/StokFont.exe -------------------------------------------------------------------------------- /Chap06/StokFont/StokFont.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/StokFont/StokFont.suo -------------------------------------------------------------------------------- /Chap06/SysMets4/Debug/SysMets4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/SysMets4/Debug/SysMets4.exe -------------------------------------------------------------------------------- /Chap06/SysMets4/Release/SysMets4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/SysMets4/Release/SysMets4.exe -------------------------------------------------------------------------------- /Chap06/SysMets4/SysMets4.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/SysMets4/SysMets4.suo -------------------------------------------------------------------------------- /Chap06/Typer/Debug/Typer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/Typer/Debug/Typer.exe -------------------------------------------------------------------------------- /Chap06/Typer/Release/Typer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/Typer/Release/Typer.exe -------------------------------------------------------------------------------- /Chap06/Typer/Typer.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Typer", "Typer.vcproj", "{43874185-83B8-48CE-AE82-F704D5EC995D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {43874185-83B8-48CE-AE82-F704D5EC995D}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {43874185-83B8-48CE-AE82-F704D5EC995D}.Debug|Win32.Build.0 = Debug|Win32 14 | {43874185-83B8-48CE-AE82-F704D5EC995D}.Release|Win32.ActiveCfg = Release|Win32 15 | {43874185-83B8-48CE-AE82-F704D5EC995D}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap06/Typer/Typer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap06/Typer/Typer.suo -------------------------------------------------------------------------------- /Chap07/BlokOut1/.vs/BlokOut1/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/.vs/BlokOut1/v14/.suo -------------------------------------------------------------------------------- /Chap07/BlokOut1/BlokOut1.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/BlokOut1.VC.db -------------------------------------------------------------------------------- /Chap07/BlokOut1/BlokOut1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/BlokOut1.suo -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.exe -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.ilk -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.log: -------------------------------------------------------------------------------- 1 |  BlokOut1.c 2 | BlokOut1.obj : warning LNK4075: 忽略“/EDITANDCONTINUE”(由于“/SAFESEH”规范) 3 | BlokOut1.vcxproj -> C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap07\BlokOut1\.\Debug\BlokOut1.exe 4 | BlokOut1.vcxproj -> .\Debug/BlokOut1.pdb (Full PDB) 5 | -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.obj -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.pdb -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/BlokOut1.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|C:\Users\YUMING\Desktop\Windows程序设计(第5版珍藏版)光盘源代码\Chap07\BlokOut1\| 3 | -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/BlokOut1.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/BlokOut1.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/vc140.idb -------------------------------------------------------------------------------- /Chap07/BlokOut1/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Debug/vc140.pdb -------------------------------------------------------------------------------- /Chap07/BlokOut1/Release/BlokOut1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/Release/BlokOut1.exe -------------------------------------------------------------------------------- /Chap07/BlokOut1/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut1/UpgradeLog.htm -------------------------------------------------------------------------------- /Chap07/BlokOut2/BlokOut2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut2/BlokOut2.suo -------------------------------------------------------------------------------- /Chap07/BlokOut2/Debug/BlokOut2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut2/Debug/BlokOut2.exe -------------------------------------------------------------------------------- /Chap07/BlokOut2/Release/BlokOut2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/BlokOut2/Release/BlokOut2.exe -------------------------------------------------------------------------------- /Chap07/Checker1/Checker1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker1/Checker1.suo -------------------------------------------------------------------------------- /Chap07/Checker1/Debug/Checker1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker1/Debug/Checker1.exe -------------------------------------------------------------------------------- /Chap07/Checker1/Release/Checker1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker1/Release/Checker1.exe -------------------------------------------------------------------------------- /Chap07/Checker2/Checker2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker2/Checker2.suo -------------------------------------------------------------------------------- /Chap07/Checker2/Debug/Checker2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker2/Debug/Checker2.exe -------------------------------------------------------------------------------- /Chap07/Checker2/Release/Checker2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker2/Release/Checker2.exe -------------------------------------------------------------------------------- /Chap07/Checker3/Checker3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker3/Checker3.suo -------------------------------------------------------------------------------- /Chap07/Checker3/Debug/Checker3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker3/Debug/Checker3.exe -------------------------------------------------------------------------------- /Chap07/Checker3/Release/Checker3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker3/Release/Checker3.exe -------------------------------------------------------------------------------- /Chap07/Checker4/Checker4.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker4/Checker4.suo -------------------------------------------------------------------------------- /Chap07/Checker4/Debug/Checker4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker4/Debug/Checker4.exe -------------------------------------------------------------------------------- /Chap07/Checker4/Release/Checker4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Checker4/Release/Checker4.exe -------------------------------------------------------------------------------- /Chap07/Connect/Connect.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Connect/Connect.suo -------------------------------------------------------------------------------- /Chap07/Connect/Debug/Connect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Connect/Debug/Connect.exe -------------------------------------------------------------------------------- /Chap07/Connect/Release/Connect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/Connect/Release/Connect.exe -------------------------------------------------------------------------------- /Chap07/SysMets/Debug/SysMets.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/SysMets/Debug/SysMets.exe -------------------------------------------------------------------------------- /Chap07/SysMets/Release/SysMets.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/SysMets/Release/SysMets.exe -------------------------------------------------------------------------------- /Chap07/SysMets/SysMets.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap07/SysMets/SysMets.suo -------------------------------------------------------------------------------- /Chap08/Beeper1/Beeper1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper1/Beeper1.suo -------------------------------------------------------------------------------- /Chap08/Beeper1/Debug/Beeper1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper1/Debug/Beeper1.exe -------------------------------------------------------------------------------- /Chap08/Beeper1/Release/Beeper1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper1/Release/Beeper1.exe -------------------------------------------------------------------------------- /Chap08/Beeper2/Beeper2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper2/Beeper2.suo -------------------------------------------------------------------------------- /Chap08/Beeper2/Debug/Beeper2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper2/Debug/Beeper2.exe -------------------------------------------------------------------------------- /Chap08/Beeper2/Release/Beeper2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Beeper2/Release/Beeper2.exe -------------------------------------------------------------------------------- /Chap08/Clock/Clock.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Clock", "Clock.vcproj", "{FED166F7-BCE5-42BB-8820-EB068EAF63E4}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {FED166F7-BCE5-42BB-8820-EB068EAF63E4}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {FED166F7-BCE5-42BB-8820-EB068EAF63E4}.Debug|Win32.Build.0 = Debug|Win32 14 | {FED166F7-BCE5-42BB-8820-EB068EAF63E4}.Release|Win32.ActiveCfg = Release|Win32 15 | {FED166F7-BCE5-42BB-8820-EB068EAF63E4}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap08/Clock/Clock.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Clock/Clock.suo -------------------------------------------------------------------------------- /Chap08/Clock/Debug/Clock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Clock/Debug/Clock.exe -------------------------------------------------------------------------------- /Chap08/Clock/Release/Clock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/Clock/Release/Clock.exe -------------------------------------------------------------------------------- /Chap08/DigClock/Debug/DigClock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/DigClock/Debug/DigClock.exe -------------------------------------------------------------------------------- /Chap08/DigClock/DigClock.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/DigClock/DigClock.suo -------------------------------------------------------------------------------- /Chap08/DigClock/Release/DigClock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/DigClock/Release/DigClock.exe -------------------------------------------------------------------------------- /Chap08/WhatClr/Debug/WhatClr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/WhatClr/Debug/WhatClr.exe -------------------------------------------------------------------------------- /Chap08/WhatClr/Release/WhatClr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/WhatClr/Release/WhatClr.exe -------------------------------------------------------------------------------- /Chap08/WhatClr/WhatClr.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap08/WhatClr/WhatClr.suo -------------------------------------------------------------------------------- /Chap09/BtnLook/BtnLook.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/BtnLook/BtnLook.suo -------------------------------------------------------------------------------- /Chap09/BtnLook/Debug/BtnLook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/BtnLook/Debug/BtnLook.exe -------------------------------------------------------------------------------- /Chap09/BtnLook/Release/BtnLook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/BtnLook/Release/BtnLook.exe -------------------------------------------------------------------------------- /Chap09/Colors1/Colors1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Colors1/Colors1.suo -------------------------------------------------------------------------------- /Chap09/Colors1/Debug/Colors1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Colors1/Debug/Colors1.exe -------------------------------------------------------------------------------- /Chap09/Colors1/Release/Colors1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Colors1/Release/Colors1.exe -------------------------------------------------------------------------------- /Chap09/Environ/Debug/Environ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Environ/Debug/Environ.exe -------------------------------------------------------------------------------- /Chap09/Environ/Environ.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Environ/Environ.suo -------------------------------------------------------------------------------- /Chap09/Environ/Release/Environ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/Environ/Release/Environ.exe -------------------------------------------------------------------------------- /Chap09/OwnDraw/Debug/OwnDraw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/OwnDraw/Debug/OwnDraw.exe -------------------------------------------------------------------------------- /Chap09/OwnDraw/OwnDraw.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/OwnDraw/OwnDraw.suo -------------------------------------------------------------------------------- /Chap09/OwnDraw/Release/OwnDraw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/OwnDraw/Release/OwnDraw.exe -------------------------------------------------------------------------------- /Chap09/PopPad1/Debug/PopPad1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/PopPad1/Debug/PopPad1.exe -------------------------------------------------------------------------------- /Chap09/PopPad1/PopPad1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/PopPad1/PopPad1.suo -------------------------------------------------------------------------------- /Chap09/PopPad1/Release/PopPad1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/PopPad1/Release/PopPad1.exe -------------------------------------------------------------------------------- /Chap09/head/Debug/head.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/head/Debug/head.exe -------------------------------------------------------------------------------- /Chap09/head/Release/head.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/head/Release/head.exe -------------------------------------------------------------------------------- /Chap09/head/head.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "head", "head.vcproj", "{56EE10B1-B935-4B14-A074-CA4BC24CA962}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {56EE10B1-B935-4B14-A074-CA4BC24CA962}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {56EE10B1-B935-4B14-A074-CA4BC24CA962}.Debug|Win32.Build.0 = Debug|Win32 14 | {56EE10B1-B935-4B14-A074-CA4BC24CA962}.Release|Win32.ActiveCfg = Release|Win32 15 | {56EE10B1-B935-4B14-A074-CA4BC24CA962}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap09/head/head.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap09/head/head.suo -------------------------------------------------------------------------------- /Chap10/IconDemo/Debug/IconDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/IconDemo/Debug/IconDemo.exe -------------------------------------------------------------------------------- /Chap10/IconDemo/ICONDEMO.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/IconDemo/ICONDEMO.ICO -------------------------------------------------------------------------------- /Chap10/IconDemo/IconDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/IconDemo/IconDemo.suo -------------------------------------------------------------------------------- /Chap10/IconDemo/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by IconDemo.rc 4 | // 5 | #define IDI_ICON 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 106 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap10/IconDemo/Release/IconDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/IconDemo/Release/IconDemo.exe -------------------------------------------------------------------------------- /Chap10/MenuDemo/Debug/MenuDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/MenuDemo/Debug/MenuDemo.exe -------------------------------------------------------------------------------- /Chap10/MenuDemo/MenuDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/MenuDemo/MenuDemo.suo -------------------------------------------------------------------------------- /Chap10/MenuDemo/Release/MenuDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/MenuDemo/Release/MenuDemo.exe -------------------------------------------------------------------------------- /Chap10/NoPopups/Debug/NoPopups.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/NoPopups/Debug/NoPopups.exe -------------------------------------------------------------------------------- /Chap10/NoPopups/NoPopups.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/NoPopups/NoPopups.suo -------------------------------------------------------------------------------- /Chap10/NoPopups/Release/NoPopups.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/NoPopups/Release/NoPopups.exe -------------------------------------------------------------------------------- /Chap10/PoePoem/Debug/PoePoem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoePoem/Debug/PoePoem.exe -------------------------------------------------------------------------------- /Chap10/PoePoem/POEPOEM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoePoem/POEPOEM.ICO -------------------------------------------------------------------------------- /Chap10/PoePoem/PoePoem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoePoem/PoePoem.suo -------------------------------------------------------------------------------- /Chap10/PoePoem/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by PoePoem.rc 4 | // 5 | #define IDS_APPNAME 1 6 | #define IDS_CAPTION 2 7 | #define IDS_ERRMSG 3 8 | 9 | // Next default values for new objects 10 | // 11 | #ifdef APSTUDIO_INVOKED 12 | #ifndef APSTUDIO_READONLY_SYMBOLS 13 | #define _APS_NEXT_RESOURCE_VALUE 103 14 | #define _APS_NEXT_COMMAND_VALUE 40001 15 | #define _APS_NEXT_CONTROL_VALUE 1000 16 | #define _APS_NEXT_SYMED_VALUE 101 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /Chap10/PoePoem/Release/PoePoem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoePoem/Release/PoePoem.exe -------------------------------------------------------------------------------- /Chap10/PoorMenu/Debug/PoorMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoorMenu/Debug/PoorMenu.exe -------------------------------------------------------------------------------- /Chap10/PoorMenu/PoorMenu.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoorMenu/PoorMenu.suo -------------------------------------------------------------------------------- /Chap10/PoorMenu/Release/PoorMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PoorMenu/Release/PoorMenu.exe -------------------------------------------------------------------------------- /Chap10/PopMenu/Debug/PopMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopMenu/Debug/PopMenu.exe -------------------------------------------------------------------------------- /Chap10/PopMenu/PopMenu.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopMenu/PopMenu.suo -------------------------------------------------------------------------------- /Chap10/PopMenu/Release/PopMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopMenu/Release/PopMenu.exe -------------------------------------------------------------------------------- /Chap10/PopPad2/Debug/PopPad2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopPad2/Debug/PopPad2.exe -------------------------------------------------------------------------------- /Chap10/PopPad2/POPPAD2.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopPad2/POPPAD2.ICO -------------------------------------------------------------------------------- /Chap10/PopPad2/PopPad2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopPad2/PopPad2.suo -------------------------------------------------------------------------------- /Chap10/PopPad2/Release/PopPad2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap10/PopPad2/Release/PopPad2.exe -------------------------------------------------------------------------------- /Chap11/About1/About1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About1/About1.ico -------------------------------------------------------------------------------- /Chap11/About1/About1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "About1", "About1.vcproj", "{D49562FC-30A6-4935-9B48-63A93FDA08B0}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D49562FC-30A6-4935-9B48-63A93FDA08B0}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {D49562FC-30A6-4935-9B48-63A93FDA08B0}.Debug|Win32.Build.0 = Debug|Win32 14 | {D49562FC-30A6-4935-9B48-63A93FDA08B0}.Release|Win32.ActiveCfg = Release|Win32 15 | {D49562FC-30A6-4935-9B48-63A93FDA08B0}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap11/About1/About1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About1/About1.suo -------------------------------------------------------------------------------- /Chap11/About1/Debug/About1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About1/Debug/About1.exe -------------------------------------------------------------------------------- /Chap11/About1/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by About1.rc 4 | // 5 | #define IDM_APP_ABOUT 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 104 12 | #define _APS_NEXT_COMMAND_VALUE 40004 13 | #define _APS_NEXT_CONTROL_VALUE 1003 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap11/About1/Release/About1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About1/Release/About1.exe -------------------------------------------------------------------------------- /Chap11/About2/About2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About2/About2.ico -------------------------------------------------------------------------------- /Chap11/About2/About2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "About2", "About2.vcproj", "{9C26F16B-DF89-4A54-8D90-D7B117B1D2EA}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {9C26F16B-DF89-4A54-8D90-D7B117B1D2EA}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {9C26F16B-DF89-4A54-8D90-D7B117B1D2EA}.Debug|Win32.Build.0 = Debug|Win32 14 | {9C26F16B-DF89-4A54-8D90-D7B117B1D2EA}.Release|Win32.ActiveCfg = Release|Win32 15 | {9C26F16B-DF89-4A54-8D90-D7B117B1D2EA}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap11/About2/About2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About2/About2.suo -------------------------------------------------------------------------------- /Chap11/About2/Debug/About2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About2/Debug/About2.exe -------------------------------------------------------------------------------- /Chap11/About2/Release/About2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About2/Release/About2.exe -------------------------------------------------------------------------------- /Chap11/About3/About3.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "About3", "About3.vcproj", "{CE22E281-BDE8-4E49-81AA-6D417B23C4AA}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {CE22E281-BDE8-4E49-81AA-6D417B23C4AA}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {CE22E281-BDE8-4E49-81AA-6D417B23C4AA}.Debug|Win32.Build.0 = Debug|Win32 14 | {CE22E281-BDE8-4E49-81AA-6D417B23C4AA}.Release|Win32.ActiveCfg = Release|Win32 15 | {CE22E281-BDE8-4E49-81AA-6D417B23C4AA}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap11/About3/About3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About3/About3.suo -------------------------------------------------------------------------------- /Chap11/About3/Debug/About3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About3/Debug/About3.exe -------------------------------------------------------------------------------- /Chap11/About3/ICON1.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About3/ICON1.ICO -------------------------------------------------------------------------------- /Chap11/About3/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by About3.rc 4 | // 5 | #define IDM_APP_ABOUT 40001 6 | #define IDC_STATIC -1 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | #define _APS_NEXT_RESOURCE_VALUE 105 13 | #define _APS_NEXT_COMMAND_VALUE 40002 14 | #define _APS_NEXT_CONTROL_VALUE 1001 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /Chap11/About3/Release/About3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/About3/Release/About3.exe -------------------------------------------------------------------------------- /Chap11/Colors2/Colors2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors2/Colors2.suo -------------------------------------------------------------------------------- /Chap11/Colors2/Debug/Colors2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors2/Debug/Colors2.exe -------------------------------------------------------------------------------- /Chap11/Colors2/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Colors2.rc 4 | // 5 | #define IDC_STATIC -1 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1003 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap11/Colors2/Release/Colors2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors2/Release/Colors2.exe -------------------------------------------------------------------------------- /Chap11/Colors3/Colors3.c: -------------------------------------------------------------------------------- 1 | /*---------------------------------------------- 2 | COLORS3.C -- Version using Common Dialog Box 3 | (c) Charles Petzold, 1998 4 | ----------------------------------------------*/ 5 | 6 | #include 7 | #include 8 | 9 | int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, 10 | PSTR szCmdLine, int iCmdShow) 11 | { 12 | static CHOOSECOLOR cc ; 13 | static COLORREF crCustColors[16] ; 14 | 15 | cc.lStructSize = sizeof (CHOOSECOLOR) ; 16 | cc.hwndOwner = NULL ; 17 | cc.hInstance = NULL ; 18 | cc.rgbResult = RGB (0x80, 0x80, 0x80) ; 19 | cc.lpCustColors = crCustColors ; 20 | cc.Flags = CC_RGBINIT | CC_FULLOPEN ; 21 | cc.lCustData = 0 ; 22 | cc.lpfnHook = NULL ; 23 | cc.lpTemplateName = NULL ; 24 | 25 | return ChooseColor (&cc) ; 26 | } 27 | -------------------------------------------------------------------------------- /Chap11/Colors3/Colors3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors3/Colors3.suo -------------------------------------------------------------------------------- /Chap11/Colors3/Debug/Colors3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors3/Debug/Colors3.exe -------------------------------------------------------------------------------- /Chap11/Colors3/Release/Colors3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/Colors3/Release/Colors3.exe -------------------------------------------------------------------------------- /Chap11/HexCalc/Debug/HexCalc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/HexCalc/Debug/HexCalc.exe -------------------------------------------------------------------------------- /Chap11/HexCalc/HexCalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/HexCalc/HexCalc.ico -------------------------------------------------------------------------------- /Chap11/HexCalc/HexCalc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/HexCalc/HexCalc.suo -------------------------------------------------------------------------------- /Chap11/HexCalc/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by HexCalc.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 103 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1003 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /Chap11/HexCalc/Release/HexCalc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/HexCalc/Release/HexCalc.exe -------------------------------------------------------------------------------- /Chap11/PopPad3/Debug/PopPad3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/PopPad3/Debug/PopPad3.exe -------------------------------------------------------------------------------- /Chap11/PopPad3/POPPAD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/PopPad3/POPPAD.ICO -------------------------------------------------------------------------------- /Chap11/PopPad3/PopPad3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/PopPad3/PopPad3.suo -------------------------------------------------------------------------------- /Chap11/PopPad3/PopPrnt0.c: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------- 2 | POPPRNT0.C -- Popup Editor Printing Functions (dummy version) 3 | ---------------------------------------------------------------*/ 4 | 5 | #include 6 | 7 | BOOL PopPrntPrintFile (HINSTANCE hInst, HWND hwnd, HWND hwndEdit, 8 | PTSTR pstrTitleName) 9 | { 10 | return FALSE ; 11 | } 12 | -------------------------------------------------------------------------------- /Chap11/PopPad3/Release/PopPad3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap11/PopPad3/Release/PopPad3.exe -------------------------------------------------------------------------------- /Chap12/ClipText/ClipText.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipText/ClipText.suo -------------------------------------------------------------------------------- /Chap12/ClipText/Debug/ClipText.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipText/Debug/ClipText.exe -------------------------------------------------------------------------------- /Chap12/ClipText/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ClipText.rc 4 | // 5 | #define IDM_EDIT_CUT 40001 6 | #define IDM_EDIT_COPY 40002 7 | #define IDM_EDIT_PASTE 40003 8 | #define IDM_EDIT_CLEAR 40004 9 | #define IDM_EDIT_RESET 40005 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 103 16 | #define _APS_NEXT_COMMAND_VALUE 40006 17 | #define _APS_NEXT_CONTROL_VALUE 1000 18 | #define _APS_NEXT_SYMED_VALUE 101 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /Chap12/ClipText/Release/ClipText.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipText/Release/ClipText.exe -------------------------------------------------------------------------------- /Chap12/ClipView/ClipView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipView/ClipView.suo -------------------------------------------------------------------------------- /Chap12/ClipView/Debug/ClipView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipView/Debug/ClipView.exe -------------------------------------------------------------------------------- /Chap12/ClipView/Release/ClipView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap12/ClipView/Release/ClipView.exe -------------------------------------------------------------------------------- /Chap13/DevCaps2/Debug/DevCaps2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/DevCaps2/Debug/DevCaps2.exe -------------------------------------------------------------------------------- /Chap13/DevCaps2/DevCaps2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/DevCaps2/DevCaps2.suo -------------------------------------------------------------------------------- /Chap13/DevCaps2/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by DevCaps2.rc 4 | // 5 | #define IDM_SCREEN 40001 6 | #define IDM_BASIC 40002 7 | #define IDM_OTHER 40003 8 | #define IDM_CURVE 40004 9 | #define IDM_LINE 40005 10 | #define IDM_POLY 40006 11 | #define IDM_TEXT 40007 12 | 13 | // Next default values for new objects 14 | // 15 | #ifdef APSTUDIO_INVOKED 16 | #ifndef APSTUDIO_READONLY_SYMBOLS 17 | #define _APS_NEXT_RESOURCE_VALUE 102 18 | #define _APS_NEXT_COMMAND_VALUE 40008 19 | #define _APS_NEXT_CONTROL_VALUE 1000 20 | #define _APS_NEXT_SYMED_VALUE 101 21 | #endif 22 | #endif 23 | -------------------------------------------------------------------------------- /Chap13/DevCaps2/Release/DevCaps2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/DevCaps2/Release/DevCaps2.exe -------------------------------------------------------------------------------- /Chap13/FormFeed/Debug/FormFeed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/FormFeed/Debug/FormFeed.exe -------------------------------------------------------------------------------- /Chap13/FormFeed/FormFeed.c: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------- 2 | FORMFEED.C -- Advances printer to next page 3 | (c) Charles Petzold, 1998 4 | ---------------------------------------------*/ 5 | 6 | #include 7 | 8 | HDC GetPrinterDC (void) ; 9 | 10 | int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, 11 | LPSTR lpszCmdLine, int iCmdShow) 12 | { 13 | static DOCINFO di = { sizeof (DOCINFO), TEXT ("FormFeed") } ; 14 | HDC hdcPrint = GetPrinterDC () ; 15 | 16 | if (hdcPrint != NULL) 17 | { 18 | if (StartDoc (hdcPrint, &di) > 0) 19 | if (StartPage (hdcPrint) > 0 && EndPage (hdcPrint) > 0) 20 | EndDoc (hdcPrint) ; 21 | 22 | DeleteDC (hdcPrint) ; 23 | } 24 | return 0 ; 25 | } 26 | 27 | -------------------------------------------------------------------------------- /Chap13/FormFeed/FormFeed.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/FormFeed/FormFeed.suo -------------------------------------------------------------------------------- /Chap13/FormFeed/Release/FormFeed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/FormFeed/Release/FormFeed.exe -------------------------------------------------------------------------------- /Chap13/PopPad/Debug/PopPad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/PopPad/Debug/PopPad.exe -------------------------------------------------------------------------------- /Chap13/PopPad/POPPAD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/PopPad/POPPAD.ICO -------------------------------------------------------------------------------- /Chap13/PopPad/Poppad.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PopPad", "PopPad.vcproj", "{1A3FF2B4-7C0A-4213-8775-E23152112112}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {1A3FF2B4-7C0A-4213-8775-E23152112112}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {1A3FF2B4-7C0A-4213-8775-E23152112112}.Debug|Win32.Build.0 = Debug|Win32 14 | {1A3FF2B4-7C0A-4213-8775-E23152112112}.Release|Win32.ActiveCfg = Release|Win32 15 | {1A3FF2B4-7C0A-4213-8775-E23152112112}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap13/PopPad/Poppad.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/PopPad/Poppad.suo -------------------------------------------------------------------------------- /Chap13/PopPad/Release/PopPad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/PopPad/Release/PopPad.exe -------------------------------------------------------------------------------- /Chap13/Print1/Debug/Print1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print1/Debug/Print1.exe -------------------------------------------------------------------------------- /Chap13/Print1/Print1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Print1", "Print1.vcproj", "{85C7FAD6-D209-47C7-958D-538EF4CBE4A6}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {85C7FAD6-D209-47C7-958D-538EF4CBE4A6}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {85C7FAD6-D209-47C7-958D-538EF4CBE4A6}.Debug|Win32.Build.0 = Debug|Win32 14 | {85C7FAD6-D209-47C7-958D-538EF4CBE4A6}.Release|Win32.ActiveCfg = Release|Win32 15 | {85C7FAD6-D209-47C7-958D-538EF4CBE4A6}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap13/Print1/Print1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print1/Print1.suo -------------------------------------------------------------------------------- /Chap13/Print1/Release/Print1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print1/Release/Print1.exe -------------------------------------------------------------------------------- /Chap13/Print2/Debug/Print2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print2/Debug/Print2.exe -------------------------------------------------------------------------------- /Chap13/Print2/Print2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Print2", "Print2.vcproj", "{6DF070ED-67D2-4117-A068-FDE063FE86B6}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {6DF070ED-67D2-4117-A068-FDE063FE86B6}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {6DF070ED-67D2-4117-A068-FDE063FE86B6}.Debug|Win32.Build.0 = Debug|Win32 14 | {6DF070ED-67D2-4117-A068-FDE063FE86B6}.Release|Win32.ActiveCfg = Release|Win32 15 | {6DF070ED-67D2-4117-A068-FDE063FE86B6}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap13/Print2/Print2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print2/Print2.suo -------------------------------------------------------------------------------- /Chap13/Print2/Release/Print2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print2/Release/Print2.exe -------------------------------------------------------------------------------- /Chap13/Print3/Debug/Print3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print3/Debug/Print3.exe -------------------------------------------------------------------------------- /Chap13/Print3/Print3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print3/Print3.suo -------------------------------------------------------------------------------- /Chap13/Print3/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Print.rc 4 | // 5 | #define IDC_STATIC -1 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap13/Print3/Release/Print3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap13/Print3/Release/Print3.exe -------------------------------------------------------------------------------- /Chap14/BitBlt/BitBlt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitBlt/BitBlt.suo -------------------------------------------------------------------------------- /Chap14/BitBlt/Debug/BitBlt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitBlt/Debug/BitBlt.exe -------------------------------------------------------------------------------- /Chap14/BitBlt/Release/BitBlt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitBlt/Release/BitBlt.exe -------------------------------------------------------------------------------- /Chap14/BitMask/BitMask.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitMask/BitMask.suo -------------------------------------------------------------------------------- /Chap14/BitMask/Debug/BitMask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitMask/Debug/BitMask.exe -------------------------------------------------------------------------------- /Chap14/BitMask/Matthew.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitMask/Matthew.bmp -------------------------------------------------------------------------------- /Chap14/BitMask/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by BitMask.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 102 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /Chap14/BitMask/Release/BitMask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/BitMask/Release/BitMask.exe -------------------------------------------------------------------------------- /Chap14/Blowup/Blowup.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Blowup/Blowup.suo -------------------------------------------------------------------------------- /Chap14/Blowup/Debug/Blowup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Blowup/Debug/Blowup.exe -------------------------------------------------------------------------------- /Chap14/Blowup/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Blowup.rc 4 | // 5 | #define IDM_EDIT_CUT 40001 6 | #define IDM_EDIT_COPY 40002 7 | #define IDM_EDIT_PASTE 40003 8 | #define IDM_EDIT_DELETE 40004 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 103 15 | #define _APS_NEXT_COMMAND_VALUE 40005 16 | #define _APS_NEXT_CONTROL_VALUE 1000 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /Chap14/Blowup/Release/Blowup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Blowup/Release/Blowup.exe -------------------------------------------------------------------------------- /Chap14/Bounce/Bounce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bounce/Bounce.cpp -------------------------------------------------------------------------------- /Chap14/Bounce/Bounce.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bounce/Bounce.suo -------------------------------------------------------------------------------- /Chap14/Bounce/Debug/Bounce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bounce/Debug/Bounce.exe -------------------------------------------------------------------------------- /Chap14/Bounce/Release/Bounce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bounce/Release/Bounce.exe -------------------------------------------------------------------------------- /Chap14/Bricks1/Bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks1/Bricks.bmp -------------------------------------------------------------------------------- /Chap14/Bricks1/Bricks1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks1/Bricks1.suo -------------------------------------------------------------------------------- /Chap14/Bricks1/Debug/Bricks1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks1/Debug/Bricks1.exe -------------------------------------------------------------------------------- /Chap14/Bricks1/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Bricks1.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 102 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /Chap14/Bricks1/Release/Bricks1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks1/Release/Bricks1.exe -------------------------------------------------------------------------------- /Chap14/Bricks2/Bricks2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks2/Bricks2.suo -------------------------------------------------------------------------------- /Chap14/Bricks2/Debug/Bricks2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks2/Debug/Bricks2.exe -------------------------------------------------------------------------------- /Chap14/Bricks2/Release/Bricks2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks2/Release/Bricks2.exe -------------------------------------------------------------------------------- /Chap14/Bricks3/Bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks3/Bricks.bmp -------------------------------------------------------------------------------- /Chap14/Bricks3/Bricks3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks3/Bricks3.suo -------------------------------------------------------------------------------- /Chap14/Bricks3/Debug/Bricks3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks3/Debug/Bricks3.exe -------------------------------------------------------------------------------- /Chap14/Bricks3/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Bricks3.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 102 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /Chap14/Bricks3/Release/Bricks3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Bricks3/Release/Bricks3.exe -------------------------------------------------------------------------------- /Chap14/GrafMenu/Bighelp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Bighelp.bmp -------------------------------------------------------------------------------- /Chap14/GrafMenu/Debug/GrafMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Debug/GrafMenu.exe -------------------------------------------------------------------------------- /Chap14/GrafMenu/Editlabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Editlabl.bmp -------------------------------------------------------------------------------- /Chap14/GrafMenu/Filelabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Filelabl.bmp -------------------------------------------------------------------------------- /Chap14/GrafMenu/Fontlabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Fontlabl.bmp -------------------------------------------------------------------------------- /Chap14/GrafMenu/GrafMenu.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/GrafMenu.suo -------------------------------------------------------------------------------- /Chap14/GrafMenu/Release/GrafMenu.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/GrafMenu/Release/GrafMenu.exe -------------------------------------------------------------------------------- /Chap14/HelloBit/Debug/HelloBit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/HelloBit/Debug/HelloBit.exe -------------------------------------------------------------------------------- /Chap14/HelloBit/HelloBit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/HelloBit/HelloBit.suo -------------------------------------------------------------------------------- /Chap14/HelloBit/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by HelloBit.rc 4 | // 5 | #define IDM_BIG 40001 6 | #define IDM_SMALL 40002 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | #define _APS_NEXT_RESOURCE_VALUE 102 13 | #define _APS_NEXT_COMMAND_VALUE 40003 14 | #define _APS_NEXT_CONTROL_VALUE 1000 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /Chap14/HelloBit/Release/HelloBit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/HelloBit/Release/HelloBit.exe -------------------------------------------------------------------------------- /Chap14/Scramble/Debug/Scramble.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Scramble/Debug/Scramble.exe -------------------------------------------------------------------------------- /Chap14/Scramble/Release/Scramble.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Scramble/Release/Scramble.exe -------------------------------------------------------------------------------- /Chap14/Scramble/Scramble.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Scramble/Scramble.suo -------------------------------------------------------------------------------- /Chap14/Sketch/Debug/Sketch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Sketch/Debug/Sketch.exe -------------------------------------------------------------------------------- /Chap14/Sketch/Release/Sketch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Sketch/Release/Sketch.exe -------------------------------------------------------------------------------- /Chap14/Sketch/Sketch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Sketch/Sketch.suo -------------------------------------------------------------------------------- /Chap14/Stretch/Debug/Stretch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Stretch/Debug/Stretch.exe -------------------------------------------------------------------------------- /Chap14/Stretch/Release/Stretch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Stretch/Release/Stretch.exe -------------------------------------------------------------------------------- /Chap14/Stretch/Stretch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap14/Stretch/Stretch.suo -------------------------------------------------------------------------------- /Chap15/Apollo11/Apollo11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/Apollo11/Apollo11.bmp -------------------------------------------------------------------------------- /Chap15/Apollo11/Apollo11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/Apollo11/Apollo11.suo -------------------------------------------------------------------------------- /Chap15/Apollo11/ApolloTD.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/Apollo11/ApolloTD.bmp -------------------------------------------------------------------------------- /Chap15/Apollo11/Debug/Apollo11.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/Apollo11/Debug/Apollo11.exe -------------------------------------------------------------------------------- /Chap15/Apollo11/DibFile.h: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | DIBFILE.H -- Header File for DIBFILE.C 3 | ----------------------------------------*/ 4 | 5 | void DibFileInitialize (HWND hwnd) ; 6 | BOOL DibFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 7 | BOOL DibFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 8 | 9 | BITMAPFILEHEADER * DibLoadImage (PTSTR pstrFileName) ; 10 | BOOL DibSaveImage (PTSTR pstrFileName, BITMAPFILEHEADER *) ; 11 | -------------------------------------------------------------------------------- /Chap15/Apollo11/Release/Apollo11.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/Apollo11/Release/Apollo11.exe -------------------------------------------------------------------------------- /Chap15/DibConv/Debug/DibConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibConv/Debug/DibConv.exe -------------------------------------------------------------------------------- /Chap15/DibConv/DibConv.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibConv/DibConv.suo -------------------------------------------------------------------------------- /Chap15/DibConv/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by DibConv.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap15/DibConv/Release/DibConv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibConv/Release/DibConv.exe -------------------------------------------------------------------------------- /Chap15/DibHeads/Debug/DibHeads.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibHeads/Debug/DibHeads.exe -------------------------------------------------------------------------------- /Chap15/DibHeads/DibHeads.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibHeads/DibHeads.suo -------------------------------------------------------------------------------- /Chap15/DibHeads/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by DibHeads.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 103 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap15/DibHeads/Release/DibHeads.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibHeads/Release/DibHeads.exe -------------------------------------------------------------------------------- /Chap15/DibSect/Debug/DibSect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibSect/Debug/DibSect.exe -------------------------------------------------------------------------------- /Chap15/DibSect/DibSect.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibSect/DibSect.suo -------------------------------------------------------------------------------- /Chap15/DibSect/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by DibSect.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap15/DibSect/Release/DibSect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/DibSect/Release/DibSect.exe -------------------------------------------------------------------------------- /Chap15/SeqDisp/Debug/SeqDisp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/SeqDisp/Debug/SeqDisp.exe -------------------------------------------------------------------------------- /Chap15/SeqDisp/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by SeqDisp.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 101 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap15/SeqDisp/Release/SeqDisp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/SeqDisp/Release/SeqDisp.exe -------------------------------------------------------------------------------- /Chap15/SeqDisp/SeqDisp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/SeqDisp/SeqDisp.suo -------------------------------------------------------------------------------- /Chap15/ShowDib1/Debug/ShowDib1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib1/Debug/ShowDib1.exe -------------------------------------------------------------------------------- /Chap15/ShowDib1/DibFile.h: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | DIBFILE.H -- Header File for DIBFILE.C 3 | ----------------------------------------*/ 4 | 5 | void DibFileInitialize (HWND hwnd) ; 6 | BOOL DibFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 7 | BOOL DibFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 8 | 9 | BITMAPFILEHEADER * DibLoadImage (PTSTR pstrFileName) ; 10 | BOOL DibSaveImage (PTSTR pstrFileName, BITMAPFILEHEADER *) ; 11 | -------------------------------------------------------------------------------- /Chap15/ShowDib1/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib1.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | #define IDM_FILE_SAVE 40002 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | #define _APS_NEXT_RESOURCE_VALUE 103 13 | #define _APS_NEXT_COMMAND_VALUE 40003 14 | #define _APS_NEXT_CONTROL_VALUE 1000 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /Chap15/ShowDib1/Release/ShowDib1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib1/Release/ShowDib1.exe -------------------------------------------------------------------------------- /Chap15/ShowDib1/ShowDib1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib1/ShowDib1.suo -------------------------------------------------------------------------------- /Chap15/ShowDib2/Debug/ShowDib2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib2/Debug/ShowDib2.exe -------------------------------------------------------------------------------- /Chap15/ShowDib2/DibFile.h: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | DIBFILE.H -- Header File for DIBFILE.C 3 | ----------------------------------------*/ 4 | 5 | void DibFileInitialize (HWND hwnd) ; 6 | BOOL DibFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 7 | BOOL DibFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 8 | 9 | BITMAPFILEHEADER * DibLoadImage (PTSTR pstrFileName) ; 10 | BOOL DibSaveImage (PTSTR pstrFileName, BITMAPFILEHEADER *) ; 11 | -------------------------------------------------------------------------------- /Chap15/ShowDib2/Release/ShowDib2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib2/Release/ShowDib2.exe -------------------------------------------------------------------------------- /Chap15/ShowDib2/Showdib2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap15/ShowDib2/Showdib2.suo -------------------------------------------------------------------------------- /Chap16/AllColor/AllColor.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/AllColor/AllColor.suo -------------------------------------------------------------------------------- /Chap16/AllColor/Debug/AllColor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/AllColor/Debug/AllColor.exe -------------------------------------------------------------------------------- /Chap16/AllColor/Release/AllColor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/AllColor/Release/AllColor.exe -------------------------------------------------------------------------------- /Chap16/Bounce/Bounce.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Bounce/Bounce.suo -------------------------------------------------------------------------------- /Chap16/Bounce/Debug/Bounce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Bounce/Debug/Bounce.exe -------------------------------------------------------------------------------- /Chap16/Bounce/Release/Bounce.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Bounce/Release/Bounce.exe -------------------------------------------------------------------------------- /Chap16/Dibble/Debug/Dibble.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Dibble/Debug/Dibble.exe -------------------------------------------------------------------------------- /Chap16/Dibble/DibConv.h: -------------------------------------------------------------------------------- 1 | /*------------------------------------- 2 | DIBCONV.H header file for DIBCONV.C 3 | -------------------------------------*/ 4 | 5 | HDIB DibConvert (HDIB hdibSrc, int iBitCountDst) ; 6 | -------------------------------------------------------------------------------- /Chap16/Dibble/DibPal.h: -------------------------------------------------------------------------------- 1 | /*----------------------------------- 2 | DIBPAL.H header file for DIBPAL.C 3 | -----------------------------------*/ 4 | 5 | HPALETTE DibPalDibTable (HDIB hdib) ; 6 | HPALETTE DibPalAllPurpose (void) ; 7 | HPALETTE DibPalUniformGrays (int iNum) ; 8 | HPALETTE DibPalUniformColors (int iNumR, int iNumG, int iNumB) ; 9 | HPALETTE DibPalVga (void) ; 10 | HPALETTE DibPalPopularity (HDIB hdib, int iRes) ; 11 | HPALETTE DibPalMedianCut (HDIB hdib, int iRes) ; 12 | -------------------------------------------------------------------------------- /Chap16/Dibble/Dibble.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Dibble/Dibble.suo -------------------------------------------------------------------------------- /Chap16/Dibble/Release/Dibble.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Dibble/Release/Dibble.exe -------------------------------------------------------------------------------- /Chap16/Fader/Debug/Fader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Fader/Debug/Fader.exe -------------------------------------------------------------------------------- /Chap16/Fader/Fader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Fader", "Fader.vcproj", "{38211373-A73A-4647-9797-FC04576CBF6E}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {38211373-A73A-4647-9797-FC04576CBF6E}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {38211373-A73A-4647-9797-FC04576CBF6E}.Debug|Win32.Build.0 = Debug|Win32 14 | {38211373-A73A-4647-9797-FC04576CBF6E}.Release|Win32.ActiveCfg = Release|Win32 15 | {38211373-A73A-4647-9797-FC04576CBF6E}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap16/Fader/Fader.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Fader/Fader.suo -------------------------------------------------------------------------------- /Chap16/Fader/Release/Fader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Fader/Release/Fader.exe -------------------------------------------------------------------------------- /Chap16/Grays1/Debug/Grays1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays1/Debug/Grays1.exe -------------------------------------------------------------------------------- /Chap16/Grays1/Grays1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays1/Grays1.suo -------------------------------------------------------------------------------- /Chap16/Grays1/Release/Grays1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays1/Release/Grays1.exe -------------------------------------------------------------------------------- /Chap16/Grays2/Debug/Grays2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays2/Debug/Grays2.exe -------------------------------------------------------------------------------- /Chap16/Grays2/Grays2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays2/Grays2.suo -------------------------------------------------------------------------------- /Chap16/Grays2/Release/Grays2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays2/Release/Grays2.exe -------------------------------------------------------------------------------- /Chap16/Grays3/Debug/Grays3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays3/Debug/Grays3.exe -------------------------------------------------------------------------------- /Chap16/Grays3/Grays3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays3/Grays3.suo -------------------------------------------------------------------------------- /Chap16/Grays3/Release/Grays3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Grays3/Release/Grays3.exe -------------------------------------------------------------------------------- /Chap16/Pipes/Debug/Pipes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Pipes/Debug/Pipes.exe -------------------------------------------------------------------------------- /Chap16/Pipes/Pipes.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Pipes", "Pipes.vcproj", "{3E438BD0-604C-4410-8198-561B46D9CDE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {3E438BD0-604C-4410-8198-561B46D9CDE5}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {3E438BD0-604C-4410-8198-561B46D9CDE5}.Debug|Win32.Build.0 = Debug|Win32 14 | {3E438BD0-604C-4410-8198-561B46D9CDE5}.Release|Win32.ActiveCfg = Release|Win32 15 | {3E438BD0-604C-4410-8198-561B46D9CDE5}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap16/Pipes/Pipes.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Pipes/Pipes.suo -------------------------------------------------------------------------------- /Chap16/Pipes/Release/Pipes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Pipes/Release/Pipes.exe -------------------------------------------------------------------------------- /Chap16/ShowDib3/Debug/ShowDib3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib3/Debug/ShowDib3.exe -------------------------------------------------------------------------------- /Chap16/ShowDib3/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib3.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib3/Release/ShowDib3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib3/Release/ShowDib3.exe -------------------------------------------------------------------------------- /Chap16/ShowDib3/ShowDib3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib3/ShowDib3.suo -------------------------------------------------------------------------------- /Chap16/ShowDib4/Debug/ShowDib4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib4/Debug/ShowDib4.exe -------------------------------------------------------------------------------- /Chap16/ShowDib4/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib4.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib4/Release/ShowDib4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib4/Release/ShowDib4.exe -------------------------------------------------------------------------------- /Chap16/ShowDib4/ShowDib4.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib4/ShowDib4.suo -------------------------------------------------------------------------------- /Chap16/ShowDib5/Debug/ShowDib5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib5/Debug/ShowDib5.exe -------------------------------------------------------------------------------- /Chap16/ShowDib5/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib5.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib5/Release/ShowDib5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib5/Release/ShowDib5.exe -------------------------------------------------------------------------------- /Chap16/ShowDib5/ShowDib5.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib5/ShowDib5.suo -------------------------------------------------------------------------------- /Chap16/ShowDib6/Debug/ShowDib6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib6/Debug/ShowDib6.exe -------------------------------------------------------------------------------- /Chap16/ShowDib6/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib6.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib6/Release/ShowDib6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib6/Release/ShowDib6.exe -------------------------------------------------------------------------------- /Chap16/ShowDib6/ShowDib6.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib6/ShowDib6.suo -------------------------------------------------------------------------------- /Chap16/ShowDib7/Debug/ShowDib7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib7/Debug/ShowDib7.exe -------------------------------------------------------------------------------- /Chap16/ShowDib7/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib7.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib7/Release/ShowDib7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib7/Release/ShowDib7.exe -------------------------------------------------------------------------------- /Chap16/ShowDib7/ShowDib7.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib7/ShowDib7.suo -------------------------------------------------------------------------------- /Chap16/ShowDib8/Debug/ShowDib8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib8/Debug/ShowDib8.exe -------------------------------------------------------------------------------- /Chap16/ShowDib8/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ShowDib8.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap16/ShowDib8/Release/ShowDib8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib8/Release/ShowDib8.exe -------------------------------------------------------------------------------- /Chap16/ShowDib8/ShowDib8.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/ShowDib8/ShowDib8.suo -------------------------------------------------------------------------------- /Chap16/SysPal1/Debug/SysPal1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal1/Debug/SysPal1.exe -------------------------------------------------------------------------------- /Chap16/SysPal1/Release/SysPal1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal1/Release/SysPal1.exe -------------------------------------------------------------------------------- /Chap16/SysPal1/SysPal1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal1/SysPal1.suo -------------------------------------------------------------------------------- /Chap16/SysPal2/Debug/SysPal2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal2/Debug/SysPal2.exe -------------------------------------------------------------------------------- /Chap16/SysPal2/Release/SysPal2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal2/Release/SysPal2.exe -------------------------------------------------------------------------------- /Chap16/SysPal2/SysPal2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal2/SysPal2.suo -------------------------------------------------------------------------------- /Chap16/SysPal3/Debug/SysPal3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal3/Debug/SysPal3.exe -------------------------------------------------------------------------------- /Chap16/SysPal3/Release/SysPal3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal3/Release/SysPal3.exe -------------------------------------------------------------------------------- /Chap16/SysPal3/SysPal3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/SysPal3/SysPal3.suo -------------------------------------------------------------------------------- /Chap16/Tunnel/Debug/Tunnel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Tunnel/Debug/Tunnel.exe -------------------------------------------------------------------------------- /Chap16/Tunnel/Release/Tunnel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Tunnel/Release/Tunnel.exe -------------------------------------------------------------------------------- /Chap16/Tunnel/Tunnel.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap16/Tunnel/Tunnel.suo -------------------------------------------------------------------------------- /Chap17/ChosFont/ChosFont.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/ChosFont/ChosFont.suo -------------------------------------------------------------------------------- /Chap17/ChosFont/Debug/ChosFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/ChosFont/Debug/ChosFont.exe -------------------------------------------------------------------------------- /Chap17/ChosFont/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by ChosFont.rc 4 | // 5 | #define IDM_FONT 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap17/ChosFont/Release/ChosFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/ChosFont/Release/ChosFont.exe -------------------------------------------------------------------------------- /Chap17/EZTest/Debug/EZTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EZTest/Debug/EZTest.exe -------------------------------------------------------------------------------- /Chap17/EZTest/EZFont.h: -------------------------------------------------------------------------------- 1 | /*---------------------- 2 | EZFONT.H header file 3 | ----------------------*/ 4 | 5 | HFONT EzCreateFont (HDC hdc, TCHAR * szFaceName, int iDeciPtHeight, 6 | int iDeciPtWidth, int iAttributes, BOOL fLogRes) ; 7 | 8 | #define EZ_ATTR_BOLD 1 9 | #define EZ_ATTR_ITALIC 2 10 | #define EZ_ATTR_UNDERLINE 4 11 | #define EZ_ATTR_STRIKEOUT 8 12 | -------------------------------------------------------------------------------- /Chap17/EZTest/EZTest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EZTest/EZTest.suo -------------------------------------------------------------------------------- /Chap17/EZTest/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by FontDemo.rc 4 | // 5 | #define IDM_PRINT 40001 6 | #define IDM_ABOUT 40002 7 | 8 | // Next default values for new objects 9 | // 10 | #ifdef APSTUDIO_INVOKED 11 | #ifndef APSTUDIO_READONLY_SYMBOLS 12 | #define _APS_NEXT_RESOURCE_VALUE 102 13 | #define _APS_NEXT_COMMAND_VALUE 40003 14 | #define _APS_NEXT_CONTROL_VALUE 1000 15 | #define _APS_NEXT_SYMED_VALUE 101 16 | #endif 17 | #endif 18 | -------------------------------------------------------------------------------- /Chap17/EZTest/Release/EZTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EZTest/Release/EZTest.exe -------------------------------------------------------------------------------- /Chap17/EndJoin/Debug/EndJoin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EndJoin/Debug/EndJoin.exe -------------------------------------------------------------------------------- /Chap17/EndJoin/EndJoin.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EndJoin/EndJoin.suo -------------------------------------------------------------------------------- /Chap17/EndJoin/Release/EndJoin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/EndJoin/Release/EndJoin.exe -------------------------------------------------------------------------------- /Chap17/FontClip/Debug/FontClip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontClip/Debug/FontClip.exe -------------------------------------------------------------------------------- /Chap17/FontClip/FontClip.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontClip/FontClip.suo -------------------------------------------------------------------------------- /Chap17/FontClip/Release/FontClip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontClip/Release/FontClip.exe -------------------------------------------------------------------------------- /Chap17/FontFill/Debug/FontFill.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontFill/Debug/FontFill.exe -------------------------------------------------------------------------------- /Chap17/FontFill/FontFill.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontFill/FontFill.suo -------------------------------------------------------------------------------- /Chap17/FontFill/Release/FontFill.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontFill/Release/FontFill.exe -------------------------------------------------------------------------------- /Chap17/FontOut1/Debug/FontOut1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut1/Debug/FontOut1.exe -------------------------------------------------------------------------------- /Chap17/FontOut1/FontOut1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut1/FontOut1.suo -------------------------------------------------------------------------------- /Chap17/FontOut1/Release/FontOut1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut1/Release/FontOut1.exe -------------------------------------------------------------------------------- /Chap17/FontOut2/Debug/FontOut2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut2/Debug/FontOut2.exe -------------------------------------------------------------------------------- /Chap17/FontOut2/FontOut2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut2/FontOut2.suo -------------------------------------------------------------------------------- /Chap17/FontOut2/Release/FontOut2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontOut2/Release/FontOut2.exe -------------------------------------------------------------------------------- /Chap17/FontRot/Debug/FontRot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontRot/Debug/FontRot.exe -------------------------------------------------------------------------------- /Chap17/FontRot/FontRot.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontRot/FontRot.suo -------------------------------------------------------------------------------- /Chap17/FontRot/Release/FontRot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/FontRot/Release/FontRot.exe -------------------------------------------------------------------------------- /Chap17/Justify1/Debug/Justify1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify1/Debug/Justify1.exe -------------------------------------------------------------------------------- /Chap17/Justify1/Justify1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify1/Justify1.suo -------------------------------------------------------------------------------- /Chap17/Justify1/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Justify1.rc 4 | // 5 | #define IDM_FILE_PRINT 40001 6 | #define IDM_FONT 40002 7 | #define IDM_ALIGN_LEFT 40003 8 | #define IDM_ALIGN_RIGHT 40004 9 | #define IDM_ALIGN_CENTER 40005 10 | #define IDM_ALIGN_JUSTIFIED 40006 11 | 12 | // Next default values for new objects 13 | // 14 | #ifdef APSTUDIO_INVOKED 15 | #ifndef APSTUDIO_READONLY_SYMBOLS 16 | #define _APS_NEXT_RESOURCE_VALUE 102 17 | #define _APS_NEXT_COMMAND_VALUE 40007 18 | #define _APS_NEXT_CONTROL_VALUE 1000 19 | #define _APS_NEXT_SYMED_VALUE 101 20 | #endif 21 | #endif 22 | -------------------------------------------------------------------------------- /Chap17/Justify1/Release/Justify1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify1/Release/Justify1.exe -------------------------------------------------------------------------------- /Chap17/Justify2/Debug/Justify2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify2/Debug/Justify2.exe -------------------------------------------------------------------------------- /Chap17/Justify2/Justify2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify2/Justify2.suo -------------------------------------------------------------------------------- /Chap17/Justify2/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Justify2.rc 4 | // 5 | #define IDM_FILE_PRINT 40001 6 | #define IDM_FONT 40002 7 | #define IDM_ALIGN_LEFT 40003 8 | #define IDM_ALIGN_RIGHT 40004 9 | #define IDM_ALIGN_CENTER 40005 10 | #define IDM_ALIGN_JUSTIFIED 40006 11 | 12 | // Next default values for new objects 13 | // 14 | #ifdef APSTUDIO_INVOKED 15 | #ifndef APSTUDIO_READONLY_SYMBOLS 16 | #define _APS_NEXT_RESOURCE_VALUE 102 17 | #define _APS_NEXT_COMMAND_VALUE 40007 18 | #define _APS_NEXT_CONTROL_VALUE 1000 19 | #define _APS_NEXT_SYMED_VALUE 101 20 | #endif 21 | #endif 22 | -------------------------------------------------------------------------------- /Chap17/Justify2/Release/Justify2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/Justify2/Release/Justify2.exe -------------------------------------------------------------------------------- /Chap17/PickFont/Debug/PickFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/PickFont/Debug/PickFont.exe -------------------------------------------------------------------------------- /Chap17/PickFont/PickFont.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/PickFont/PickFont.suo -------------------------------------------------------------------------------- /Chap17/PickFont/Release/PickFont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/PickFont/Release/PickFont.exe -------------------------------------------------------------------------------- /Chap17/UniChars/Debug/Unichars.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/UniChars/Debug/Unichars.exe -------------------------------------------------------------------------------- /Chap17/UniChars/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Unichars.rc 4 | // 5 | #define IDM_FONT 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /Chap17/UniChars/Release/Unichars.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/UniChars/Release/Unichars.exe -------------------------------------------------------------------------------- /Chap17/UniChars/Unichars.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap17/UniChars/Unichars.suo -------------------------------------------------------------------------------- /Chap18/Emf1/Debug/Emf1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf1/Debug/Emf1.exe -------------------------------------------------------------------------------- /Chap18/Emf1/Emf1.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf1", "Emf1.vcproj", "{9CA46C49-BD68-4E2F-A473-A02EEB4F0247}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {9CA46C49-BD68-4E2F-A473-A02EEB4F0247}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {9CA46C49-BD68-4E2F-A473-A02EEB4F0247}.Debug|Win32.Build.0 = Debug|Win32 14 | {9CA46C49-BD68-4E2F-A473-A02EEB4F0247}.Release|Win32.ActiveCfg = Release|Win32 15 | {9CA46C49-BD68-4E2F-A473-A02EEB4F0247}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf1/Emf1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf1/Emf1.suo -------------------------------------------------------------------------------- /Chap18/Emf1/Release/Emf1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf1/Release/Emf1.exe -------------------------------------------------------------------------------- /Chap18/Emf10/Debug/Emf10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf10/Debug/Emf10.exe -------------------------------------------------------------------------------- /Chap18/Emf10/Emf10.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf10", "Emf10.vcproj", "{601E86C7-6034-4BBF-A82D-72C1F4652D26}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {601E86C7-6034-4BBF-A82D-72C1F4652D26}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {601E86C7-6034-4BBF-A82D-72C1F4652D26}.Debug|Win32.Build.0 = Debug|Win32 14 | {601E86C7-6034-4BBF-A82D-72C1F4652D26}.Release|Win32.ActiveCfg = Release|Win32 15 | {601E86C7-6034-4BBF-A82D-72C1F4652D26}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf10/Emf10.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf10/Emf10.suo -------------------------------------------------------------------------------- /Chap18/Emf10/Release/Emf10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf10/Release/Emf10.exe -------------------------------------------------------------------------------- /Chap18/Emf11/Debug/Emf11.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf11/Debug/Emf11.exe -------------------------------------------------------------------------------- /Chap18/Emf11/Emf11.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf11", "Emf11.vcproj", "{5530A915-4060-46BC-BAB3-4E94AAD18B8A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5530A915-4060-46BC-BAB3-4E94AAD18B8A}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {5530A915-4060-46BC-BAB3-4E94AAD18B8A}.Debug|Win32.Build.0 = Debug|Win32 14 | {5530A915-4060-46BC-BAB3-4E94AAD18B8A}.Release|Win32.ActiveCfg = Release|Win32 15 | {5530A915-4060-46BC-BAB3-4E94AAD18B8A}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf11/Emf11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf11/Emf11.suo -------------------------------------------------------------------------------- /Chap18/Emf11/Release/Emf11.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf11/Release/Emf11.exe -------------------------------------------------------------------------------- /Chap18/Emf12/Debug/Emf12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf12/Debug/Emf12.exe -------------------------------------------------------------------------------- /Chap18/Emf12/Emf12.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf12", "Emf12.vcproj", "{D3AF407B-0F7C-4190-9F47-1737EE7BD0CD}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D3AF407B-0F7C-4190-9F47-1737EE7BD0CD}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {D3AF407B-0F7C-4190-9F47-1737EE7BD0CD}.Debug|Win32.Build.0 = Debug|Win32 14 | {D3AF407B-0F7C-4190-9F47-1737EE7BD0CD}.Release|Win32.ActiveCfg = Release|Win32 15 | {D3AF407B-0F7C-4190-9F47-1737EE7BD0CD}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf12/Emf12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf12/Emf12.suo -------------------------------------------------------------------------------- /Chap18/Emf12/Release/Emf12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf12/Release/Emf12.exe -------------------------------------------------------------------------------- /Chap18/Emf13/Debug/Emf13.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf13/Debug/Emf13.exe -------------------------------------------------------------------------------- /Chap18/Emf13/Emf13.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf13", "Emf13.vcproj", "{4AAF02D8-A155-4600-ABF9-3B117FBB2113}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {4AAF02D8-A155-4600-ABF9-3B117FBB2113}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {4AAF02D8-A155-4600-ABF9-3B117FBB2113}.Debug|Win32.Build.0 = Debug|Win32 14 | {4AAF02D8-A155-4600-ABF9-3B117FBB2113}.Release|Win32.ActiveCfg = Release|Win32 15 | {4AAF02D8-A155-4600-ABF9-3B117FBB2113}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf13/Emf13.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf13/Emf13.suo -------------------------------------------------------------------------------- /Chap18/Emf13/Release/Emf13.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf13/Release/Emf13.exe -------------------------------------------------------------------------------- /Chap18/Emf2/Debug/Emf2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf2/Debug/Emf2.exe -------------------------------------------------------------------------------- /Chap18/Emf2/Emf2.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf2", "Emf2.vcproj", "{55F6B626-0E3E-4360-ACE4-CDCA6722B09C}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {55F6B626-0E3E-4360-ACE4-CDCA6722B09C}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {55F6B626-0E3E-4360-ACE4-CDCA6722B09C}.Debug|Win32.Build.0 = Debug|Win32 14 | {55F6B626-0E3E-4360-ACE4-CDCA6722B09C}.Release|Win32.ActiveCfg = Release|Win32 15 | {55F6B626-0E3E-4360-ACE4-CDCA6722B09C}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf2/Emf2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf2/Emf2.suo -------------------------------------------------------------------------------- /Chap18/Emf2/Release/Emf2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf2/Release/Emf2.exe -------------------------------------------------------------------------------- /Chap18/Emf3/Debug/Emf3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf3/Debug/Emf3.exe -------------------------------------------------------------------------------- /Chap18/Emf3/Emf3.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf3", "Emf3.vcproj", "{2932A16E-E530-486A-B91D-8D8EA7388F08}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2932A16E-E530-486A-B91D-8D8EA7388F08}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {2932A16E-E530-486A-B91D-8D8EA7388F08}.Debug|Win32.Build.0 = Debug|Win32 14 | {2932A16E-E530-486A-B91D-8D8EA7388F08}.Release|Win32.ActiveCfg = Release|Win32 15 | {2932A16E-E530-486A-B91D-8D8EA7388F08}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf3/Emf3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf3/Emf3.suo -------------------------------------------------------------------------------- /Chap18/Emf3/Release/Emf3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf3/Release/Emf3.exe -------------------------------------------------------------------------------- /Chap18/Emf4/Debug/Emf4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf4/Debug/Emf4.exe -------------------------------------------------------------------------------- /Chap18/Emf4/Emf4.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf4", "Emf4.vcproj", "{44B455C2-F45E-44C9-9D61-7F4037848C15}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {44B455C2-F45E-44C9-9D61-7F4037848C15}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {44B455C2-F45E-44C9-9D61-7F4037848C15}.Debug|Win32.Build.0 = Debug|Win32 14 | {44B455C2-F45E-44C9-9D61-7F4037848C15}.Release|Win32.ActiveCfg = Release|Win32 15 | {44B455C2-F45E-44C9-9D61-7F4037848C15}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf4/Emf4.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf4/Emf4.suo -------------------------------------------------------------------------------- /Chap18/Emf4/Release/Emf4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf4/Release/Emf4.exe -------------------------------------------------------------------------------- /Chap18/Emf5/Debug/Emf5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf5/Debug/Emf5.exe -------------------------------------------------------------------------------- /Chap18/Emf5/Emf5.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf5", "Emf5.vcproj", "{432CEF92-4D0E-4F35-A9DD-0F38681D3A0D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {432CEF92-4D0E-4F35-A9DD-0F38681D3A0D}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {432CEF92-4D0E-4F35-A9DD-0F38681D3A0D}.Debug|Win32.Build.0 = Debug|Win32 14 | {432CEF92-4D0E-4F35-A9DD-0F38681D3A0D}.Release|Win32.ActiveCfg = Release|Win32 15 | {432CEF92-4D0E-4F35-A9DD-0F38681D3A0D}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf5/Emf5.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf5/Emf5.suo -------------------------------------------------------------------------------- /Chap18/Emf5/Release/Emf5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf5/Release/Emf5.exe -------------------------------------------------------------------------------- /Chap18/Emf6/Debug/Emf6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf6/Debug/Emf6.exe -------------------------------------------------------------------------------- /Chap18/Emf6/Emf6.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf6", "Emf6.vcproj", "{AE6DA63F-3879-4CF0-B47C-64021AE16332}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {AE6DA63F-3879-4CF0-B47C-64021AE16332}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {AE6DA63F-3879-4CF0-B47C-64021AE16332}.Debug|Win32.Build.0 = Debug|Win32 14 | {AE6DA63F-3879-4CF0-B47C-64021AE16332}.Release|Win32.ActiveCfg = Release|Win32 15 | {AE6DA63F-3879-4CF0-B47C-64021AE16332}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf6/Emf6.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf6/Emf6.suo -------------------------------------------------------------------------------- /Chap18/Emf6/Release/Emf6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf6/Release/Emf6.exe -------------------------------------------------------------------------------- /Chap18/Emf7/Debug/Emf7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf7/Debug/Emf7.exe -------------------------------------------------------------------------------- /Chap18/Emf7/Emf7.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf7", "Emf7.vcproj", "{BADC038B-8578-446D-80CE-D26A99AB50B4}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {BADC038B-8578-446D-80CE-D26A99AB50B4}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {BADC038B-8578-446D-80CE-D26A99AB50B4}.Debug|Win32.Build.0 = Debug|Win32 14 | {BADC038B-8578-446D-80CE-D26A99AB50B4}.Release|Win32.ActiveCfg = Release|Win32 15 | {BADC038B-8578-446D-80CE-D26A99AB50B4}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf7/Emf7.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf7/Emf7.suo -------------------------------------------------------------------------------- /Chap18/Emf7/Release/Emf7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf7/Release/Emf7.exe -------------------------------------------------------------------------------- /Chap18/Emf8/Debug/Emf8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf8/Debug/Emf8.exe -------------------------------------------------------------------------------- /Chap18/Emf8/Emf8.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf8", "Emf8.vcproj", "{F86397B9-D3FA-4847-931F-B1AF61D30B04}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F86397B9-D3FA-4847-931F-B1AF61D30B04}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {F86397B9-D3FA-4847-931F-B1AF61D30B04}.Debug|Win32.Build.0 = Debug|Win32 14 | {F86397B9-D3FA-4847-931F-B1AF61D30B04}.Release|Win32.ActiveCfg = Release|Win32 15 | {F86397B9-D3FA-4847-931F-B1AF61D30B04}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf8/Emf8.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf8/Emf8.suo -------------------------------------------------------------------------------- /Chap18/Emf8/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Emf.rc 4 | // 5 | #define IDM_PRINT 40001 6 | #define IDM_EXIT 40002 7 | #define IDM_ABOUT 40003 8 | 9 | // Next default values for new objects 10 | // 11 | #ifdef APSTUDIO_INVOKED 12 | #ifndef APSTUDIO_READONLY_SYMBOLS 13 | #define _APS_NEXT_RESOURCE_VALUE 102 14 | #define _APS_NEXT_COMMAND_VALUE 40004 15 | #define _APS_NEXT_CONTROL_VALUE 1000 16 | #define _APS_NEXT_SYMED_VALUE 101 17 | #endif 18 | #endif 19 | -------------------------------------------------------------------------------- /Chap18/Emf8/Release/Emf8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf8/Release/Emf8.exe -------------------------------------------------------------------------------- /Chap18/Emf9/Debug/Emf9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf9/Debug/Emf9.exe -------------------------------------------------------------------------------- /Chap18/Emf9/Emf9.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Emf9", "Emf9.vcproj", "{9A8460E1-60B1-4165-85B5-3E873DE6C79C}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {9A8460E1-60B1-4165-85B5-3E873DE6C79C}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {9A8460E1-60B1-4165-85B5-3E873DE6C79C}.Debug|Win32.Build.0 = Debug|Win32 14 | {9A8460E1-60B1-4165-85B5-3E873DE6C79C}.Release|Win32.ActiveCfg = Release|Win32 15 | {9A8460E1-60B1-4165-85B5-3E873DE6C79C}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap18/Emf9/Emf9.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf9/Emf9.suo -------------------------------------------------------------------------------- /Chap18/Emf9/Release/Emf9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Emf9/Release/Emf9.exe -------------------------------------------------------------------------------- /Chap18/EmfView/Debug/EmfView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/EmfView/Debug/EmfView.exe -------------------------------------------------------------------------------- /Chap18/EmfView/EmfView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/EmfView/EmfView.suo -------------------------------------------------------------------------------- /Chap18/EmfView/Release/EmfView.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/EmfView/Release/EmfView.exe -------------------------------------------------------------------------------- /Chap18/Metafile/Debug/Metafile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Metafile/Debug/Metafile.exe -------------------------------------------------------------------------------- /Chap18/Metafile/Metafile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Metafile/Metafile.suo -------------------------------------------------------------------------------- /Chap18/Metafile/Release/Metafile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap18/Metafile/Release/Metafile.exe -------------------------------------------------------------------------------- /Chap19/MDIDemo/Debug/MDIDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap19/MDIDemo/Debug/MDIDemo.exe -------------------------------------------------------------------------------- /Chap19/MDIDemo/MDIDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap19/MDIDemo/MDIDemo.suo -------------------------------------------------------------------------------- /Chap19/MDIDemo/Release/MDIDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap19/MDIDemo/Release/MDIDemo.exe -------------------------------------------------------------------------------- /Chap20/BigJob1/BigJob1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob1/BigJob1.suo -------------------------------------------------------------------------------- /Chap20/BigJob1/Debug/BigJob1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob1/Debug/BigJob1.exe -------------------------------------------------------------------------------- /Chap20/BigJob1/Release/BigJob1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob1/Release/BigJob1.exe -------------------------------------------------------------------------------- /Chap20/BigJob2/BigJob2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob2/BigJob2.suo -------------------------------------------------------------------------------- /Chap20/BigJob2/Debug/BigJob2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob2/Debug/BigJob2.exe -------------------------------------------------------------------------------- /Chap20/BigJob2/Release/BigJob2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/BigJob2/Release/BigJob2.exe -------------------------------------------------------------------------------- /Chap20/Multi1/Debug/Multi1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi1/Debug/Multi1.exe -------------------------------------------------------------------------------- /Chap20/Multi1/Multi1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi1/Multi1.suo -------------------------------------------------------------------------------- /Chap20/Multi1/Release/Multi1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi1/Release/Multi1.exe -------------------------------------------------------------------------------- /Chap20/Multi2/Debug/Multi2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi2/Debug/Multi2.exe -------------------------------------------------------------------------------- /Chap20/Multi2/Multi2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi2/Multi2.suo -------------------------------------------------------------------------------- /Chap20/Multi2/Release/Multi2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/Multi2/Release/Multi2.exe -------------------------------------------------------------------------------- /Chap20/RndRctMT/Debug/RndRctMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/RndRctMT/Debug/RndRctMT.exe -------------------------------------------------------------------------------- /Chap20/RndRctMT/Release/RndRctMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/RndRctMT/Release/RndRctMT.exe -------------------------------------------------------------------------------- /Chap20/RndRctMT/RndRctMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap20/RndRctMT/RndRctMT.suo -------------------------------------------------------------------------------- /Chap21/EdrTest/Debug/EdrLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/EdrTest/Debug/EdrLib.dll -------------------------------------------------------------------------------- /Chap21/EdrTest/Debug/EdrTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/EdrTest/Debug/EdrTest.exe -------------------------------------------------------------------------------- /Chap21/EdrTest/EdrLib.h: -------------------------------------------------------------------------------- 1 | /*---------------------- 2 | EDRLIB.H header file 3 | ----------------------*/ 4 | 5 | #ifdef __cplusplus 6 | #define EXPORT extern "C" __declspec (dllexport) 7 | #else 8 | #define EXPORT __declspec (dllexport) 9 | #endif 10 | 11 | EXPORT BOOL CALLBACK EdrCenterTextA (HDC, PRECT, PCSTR) ; 12 | EXPORT BOOL CALLBACK EdrCenterTextW (HDC, PRECT, PCWSTR) ; 13 | 14 | #ifdef UNICODE 15 | #define EdrCenterText EdrCenterTextW 16 | #else 17 | #define EdrCenterText EdrCenterTextA 18 | #endif -------------------------------------------------------------------------------- /Chap21/EdrTest/EdrTest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/EdrTest/EdrTest.suo -------------------------------------------------------------------------------- /Chap21/EdrTest/Release/EdrLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/EdrTest/Release/EdrLib.dll -------------------------------------------------------------------------------- /Chap21/EdrTest/Release/EdrTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/EdrTest/Release/EdrTest.exe -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP1.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP2.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP3.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP3.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP4.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP4.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP5.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP5.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP6.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP6.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP7.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP7.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP8.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP8.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BITMAP9.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/BITMAP9.BMP -------------------------------------------------------------------------------- /Chap21/ShowBit/BitLib.c: -------------------------------------------------------------------------------- 1 | /*-------------------------------------------------------------- 2 | BITLIB.C -- Code entry point for BITLIB dynamic-link library 3 | (c) Charles Petzold, 1998 4 | --------------------------------------------------------------*/ 5 | 6 | #include 7 | 8 | int WINAPI DllMain (HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved) 9 | { 10 | return TRUE ; 11 | } 12 | -------------------------------------------------------------------------------- /Chap21/ShowBit/Debug/BitLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/Debug/BitLib.dll -------------------------------------------------------------------------------- /Chap21/ShowBit/Debug/ShowBit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/Debug/ShowBit.exe -------------------------------------------------------------------------------- /Chap21/ShowBit/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by BitLib.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 110 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /Chap21/ShowBit/Release/BitLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/Release/BitLib.dll -------------------------------------------------------------------------------- /Chap21/ShowBit/Release/ShowBit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/Release/ShowBit.exe -------------------------------------------------------------------------------- /Chap21/ShowBit/ShowBit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/ShowBit/ShowBit.suo -------------------------------------------------------------------------------- /Chap21/StrProg/Debug/StrLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/StrProg/Debug/StrLib.dll -------------------------------------------------------------------------------- /Chap21/StrProg/Debug/StrProg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/StrProg/Debug/StrProg.exe -------------------------------------------------------------------------------- /Chap21/StrProg/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by StrProg.rc 4 | // 5 | #define IDC_STRING 1000 6 | #define IDM_ENTER 40001 7 | #define IDM_DELETE 40002 8 | #define IDC_STATIC -1 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 104 15 | #define _APS_NEXT_COMMAND_VALUE 40003 16 | #define _APS_NEXT_CONTROL_VALUE 1001 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /Chap21/StrProg/Release/StrLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/StrProg/Release/StrLib.dll -------------------------------------------------------------------------------- /Chap21/StrProg/Release/StrProg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/StrProg/Release/StrProg.exe -------------------------------------------------------------------------------- /Chap21/StrProg/StrProg.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap21/StrProg/StrProg.suo -------------------------------------------------------------------------------- /Chap22/AddSynth/AddSynth.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/AddSynth.suo -------------------------------------------------------------------------------- /Chap22/AddSynth/Clarinet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/Clarinet.wav -------------------------------------------------------------------------------- /Chap22/AddSynth/Debug/AddSynth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/Debug/AddSynth.exe -------------------------------------------------------------------------------- /Chap22/AddSynth/Oboe.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/Oboe.wav -------------------------------------------------------------------------------- /Chap22/AddSynth/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by AddSynth.rc 4 | // 5 | #define IDC_TRUMPET 1000 6 | #define IDC_OBOE 1001 7 | #define IDC_CLARINET 1002 8 | #define IDC_TEXT 1003 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 102 15 | #define _APS_NEXT_COMMAND_VALUE 40001 16 | #define _APS_NEXT_CONTROL_VALUE 1004 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /Chap22/AddSynth/Release/AddSynth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/Release/AddSynth.exe -------------------------------------------------------------------------------- /Chap22/AddSynth/Trumpet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/AddSynth/Trumpet.wav -------------------------------------------------------------------------------- /Chap22/BachTocc/BachTocc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/BachTocc/BachTocc.suo -------------------------------------------------------------------------------- /Chap22/BachTocc/Debug/BachTocc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/BachTocc/Debug/BachTocc.exe -------------------------------------------------------------------------------- /Chap22/BachTocc/Release/BachTocc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/BachTocc/Release/BachTocc.exe -------------------------------------------------------------------------------- /Chap22/Drum/DRUM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Drum/DRUM.ICO -------------------------------------------------------------------------------- /Chap22/Drum/Debug/Drum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Drum/Debug/Drum.exe -------------------------------------------------------------------------------- /Chap22/Drum/Drum.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Drum", "Drum.vcproj", "{C45B19D3-D5AD-401F-9DB5-073D9300A314}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C45B19D3-D5AD-401F-9DB5-073D9300A314}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {C45B19D3-D5AD-401F-9DB5-073D9300A314}.Debug|Win32.Build.0 = Debug|Win32 14 | {C45B19D3-D5AD-401F-9DB5-073D9300A314}.Release|Win32.ActiveCfg = Release|Win32 15 | {C45B19D3-D5AD-401F-9DB5-073D9300A314}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Chap22/Drum/Drum.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Drum/Drum.suo -------------------------------------------------------------------------------- /Chap22/Drum/DrumFile.h: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------- 2 | DRUMFILE.H Header File for File I/O Routines for DRUM 3 | -------------------------------------------------------*/ 4 | 5 | BOOL DrumFileOpenDlg (HWND, TCHAR *, TCHAR *) ; 6 | BOOL DrumFileSaveDlg (HWND, TCHAR *, TCHAR *) ; 7 | 8 | TCHAR * DrumFileWrite (DRUM *, TCHAR *) ; 9 | TCHAR * DrumFileRead (DRUM *, TCHAR *) ; 10 | -------------------------------------------------------------------------------- /Chap22/Drum/DrumTime.h: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------ 2 | DRUMTIME.H Header File for Time Functions for DRUM Program 3 | ------------------------------------------------------------*/ 4 | 5 | #define NUM_PERC 47 6 | #define WM_USER_NOTIFY (WM_USER + 1) 7 | #define WM_USER_FINISHED (WM_USER + 2) 8 | #define WM_USER_ERROR (WM_USER + 3) 9 | 10 | #pragma pack(push, 2) 11 | 12 | typedef struct 13 | { 14 | short iMsecPerBeat ; 15 | short iVelocity ; 16 | short iNumBeats ; 17 | DWORD dwSeqPerc [NUM_PERC] ; 18 | DWORD dwSeqPian [NUM_PERC] ; 19 | } 20 | DRUM, * PDRUM ; 21 | 22 | #pragma pack(pop) 23 | 24 | void DrumSetParams (PDRUM) ; 25 | BOOL DrumBeginSequence (HWND) ; 26 | void DrumEndSequence (BOOL) ; 27 | -------------------------------------------------------------------------------- /Chap22/Drum/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Drum.rc 4 | // 5 | #define IDM_FILE_NEW 40001 6 | #define IDM_FILE_OPEN 40002 7 | #define IDM_FILE_SAVE 40003 8 | #define IDM_FILE_SAVE_AS 40004 9 | #define IDM_APP_EXIT 40005 10 | #define IDM_SEQUENCE_RUNNING 40006 11 | #define IDM_SEQUENCE_STOPPED 40007 12 | #define IDM_APP_ABOUT 40008 13 | 14 | // Next default values for new objects 15 | // 16 | #ifdef APSTUDIO_INVOKED 17 | #ifndef APSTUDIO_READONLY_SYMBOLS 18 | #define _APS_NEXT_RESOURCE_VALUE 104 19 | #define _APS_NEXT_COMMAND_VALUE 40009 20 | #define _APS_NEXT_CONTROL_VALUE 1000 21 | #define _APS_NEXT_SYMED_VALUE 101 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /Chap22/Drum/Release/Drum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Drum/Release/Drum.exe -------------------------------------------------------------------------------- /Chap22/KBMidi/Debug/KBMidi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/KBMidi/Debug/KBMidi.exe -------------------------------------------------------------------------------- /Chap22/KBMidi/KBMidi.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/KBMidi/KBMidi.suo -------------------------------------------------------------------------------- /Chap22/KBMidi/Release/KBMidi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/KBMidi/Release/KBMidi.exe -------------------------------------------------------------------------------- /Chap22/Record1/Debug/Record1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record1/Debug/Record1.exe -------------------------------------------------------------------------------- /Chap22/Record1/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Record.rc 4 | // 5 | #define IDC_RECORD_BEG 1000 6 | #define IDC_RECORD_END 1001 7 | #define IDC_PLAY_BEG 1002 8 | #define IDC_PLAY_PAUSE 1003 9 | #define IDC_PLAY_END 1004 10 | #define IDC_PLAY_REV 1005 11 | #define IDC_PLAY_REP 1006 12 | #define IDC_PLAY_SPEED 1007 13 | 14 | // Next default values for new objects 15 | // 16 | #ifdef APSTUDIO_INVOKED 17 | #ifndef APSTUDIO_READONLY_SYMBOLS 18 | #define _APS_NEXT_RESOURCE_VALUE 102 19 | #define _APS_NEXT_COMMAND_VALUE 40001 20 | #define _APS_NEXT_CONTROL_VALUE 1008 21 | #define _APS_NEXT_SYMED_VALUE 101 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /Chap22/Record1/Record1.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record1/Record1.suo -------------------------------------------------------------------------------- /Chap22/Record1/Release/Record1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record1/Release/Record1.exe -------------------------------------------------------------------------------- /Chap22/Record2/Debug/Record2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record2/Debug/Record2.exe -------------------------------------------------------------------------------- /Chap22/Record2/Record2.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record2/Record2.suo -------------------------------------------------------------------------------- /Chap22/Record2/Release/Record2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record2/Release/Record2.exe -------------------------------------------------------------------------------- /Chap22/Record3/Debug/Record3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record3/Debug/Record3.exe -------------------------------------------------------------------------------- /Chap22/Record3/Record3.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record3/Record3.suo -------------------------------------------------------------------------------- /Chap22/Record3/Release/Record3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/Record3/Release/Record3.exe -------------------------------------------------------------------------------- /Chap22/SineWave/Debug/SineWave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/SineWave/Debug/SineWave.exe -------------------------------------------------------------------------------- /Chap22/SineWave/RESOURCE.H: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by SineWave.rc 4 | // 5 | #define IDC_STATIC -1 6 | #define IDC_SCROLL 1000 7 | #define IDC_TEXT 1001 8 | #define IDC_ONOFF 1002 9 | 10 | // Next default values for new objects 11 | // 12 | #ifdef APSTUDIO_INVOKED 13 | #ifndef APSTUDIO_READONLY_SYMBOLS 14 | #define _APS_NEXT_RESOURCE_VALUE 102 15 | #define _APS_NEXT_COMMAND_VALUE 40001 16 | #define _APS_NEXT_CONTROL_VALUE 1003 17 | #define _APS_NEXT_SYMED_VALUE 101 18 | #endif 19 | #endif 20 | -------------------------------------------------------------------------------- /Chap22/SineWave/Release/SineWave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/SineWave/Release/SineWave.exe -------------------------------------------------------------------------------- /Chap22/SineWave/SineWave.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/SineWave/SineWave.suo -------------------------------------------------------------------------------- /Chap22/TestMci/Debug/TestMci.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/TestMci/Debug/TestMci.exe -------------------------------------------------------------------------------- /Chap22/TestMci/Release/TestMci.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/TestMci/Release/TestMci.exe -------------------------------------------------------------------------------- /Chap22/TestMci/TestMci.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/TestMci/TestMci.suo -------------------------------------------------------------------------------- /Chap22/WakeUp/Debug/WakeUp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/WakeUp/Debug/WakeUp.exe -------------------------------------------------------------------------------- /Chap22/WakeUp/Release/WakeUp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/WakeUp/Release/WakeUp.exe -------------------------------------------------------------------------------- /Chap22/WakeUp/WakeUp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap22/WakeUp/WakeUp.suo -------------------------------------------------------------------------------- /Chap23/NetTime/Debug/NetTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/NetTime/Debug/NetTime.exe -------------------------------------------------------------------------------- /Chap23/NetTime/NetTime.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/NetTime/NetTime.suo -------------------------------------------------------------------------------- /Chap23/NetTime/Release/NetTime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/NetTime/Release/NetTime.exe -------------------------------------------------------------------------------- /Chap23/UpdDemo/Debug/UpdDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/UpdDemo/Debug/UpdDemo.exe -------------------------------------------------------------------------------- /Chap23/UpdDemo/Release/UpdDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/UpdDemo/Release/UpdDemo.exe -------------------------------------------------------------------------------- /Chap23/UpdDemo/UpdDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Chap23/UpdDemo/UpdDemo.suo -------------------------------------------------------------------------------- /Chap23/UpdDemo/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by UpdDemo.rc 4 | // 5 | #define IDC_STATUS 40001 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40002 13 | #define _APS_NEXT_CONTROL_VALUE 1000 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/EULA.txt -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cornyum/Windows-programming-5th/4acc1c18ef55681496b7dbb044aa50ef85dce452/Readme.txt --------------------------------------------------------------------------------