├── .gitignore ├── README.md ├── readme.txt └── src ├── AllProjects.sln ├── Chap01 └── HelloMsg │ ├── HelloMsg.c │ ├── HelloMsg.mak │ ├── HelloMsg.sln │ └── HelloMsg.vcxproj ├── Chap02 └── ScrnSize │ ├── ScrnSize.c │ ├── ScrnSize.mak │ ├── ScrnSize.sln │ ├── ScrnSize.vcxproj │ └── ScrnSize.vcxproj.filters ├── Chap03 └── HelloWin │ ├── HelloWin.c │ ├── HelloWin.mak │ ├── HelloWin.sln │ ├── HelloWin.vcxproj │ └── HelloWin.wav ├── Chap04 ├── SysMets1 │ ├── MAKEFILE │ ├── SysMets.h │ ├── SysMets1.c │ ├── SysMets1.mak │ ├── SysMets1.sln │ └── SysMets1.vcxproj ├── SysMets2 │ ├── MAKEFILE │ ├── SysMets.h │ ├── SysMets2.c │ ├── SysMets2.mak │ ├── SysMets2.sln │ └── SysMets2.vcxproj └── SysMets3 │ ├── MAKEFILE │ ├── SysMets.h │ ├── SysMets3.c │ ├── SysMets3.mak │ ├── SysMets3.sln │ └── SysMets3.vcxproj ├── Chap05 ├── AltWind │ ├── AltWind.c │ ├── AltWind.mak │ ├── AltWind.sln │ └── AltWind.vcxproj ├── Bezier │ ├── Bezier.c │ ├── Bezier.mak │ ├── Bezier.sln │ └── Bezier.vcxproj ├── Clover │ ├── Clover.c │ ├── Clover.mak │ ├── Clover.sln │ └── Clover.vcxproj ├── DevCaps1 │ ├── DevCaps1.c │ ├── DevCaps1.mak │ ├── DevCaps1.sln │ └── DevCaps1.vcxproj ├── LineDemo │ ├── LineDemo.c │ ├── LineDemo.mak │ ├── LineDemo.sln │ └── LineDemo.vcxproj ├── RandRect │ ├── RandRect.c │ ├── RandRect.mak │ ├── RandRect.sln │ └── RandRect.vcxproj ├── SineWave │ ├── SineWave.c │ ├── SineWave.mak │ ├── SineWave.sln │ └── SineWave.vcxproj └── WhatSize │ ├── WhatSize.c │ ├── WhatSize.mak │ ├── WhatSize.sln │ └── WhatSize.vcxproj ├── Chap06 ├── KeyView1 │ ├── KeyView1.c │ ├── KeyView1.mak │ ├── KeyView1.sln │ └── KeyView1.vcxproj ├── KeyView2 │ ├── KeyView2.c │ ├── KeyView2.mak │ ├── KeyView2.sln │ └── KeyView2.vcxproj ├── StokFont │ ├── StokFont.c │ ├── StokFont.mak │ ├── StokFont.sln │ └── StokFont.vcxproj ├── SysMets4 │ ├── SysMets.h │ ├── SysMets4.c │ ├── SysMets4.mak │ ├── SysMets4.sln │ └── SysMets4.vcxproj └── Typer │ ├── Typer.c │ ├── Typer.mak │ ├── Typer.sln │ ├── Typer.vcxproj │ └── Typer.vcxproj.filters ├── Chap07 ├── BlokOut1 │ ├── BlokOut1.c │ ├── BlokOut1.mak │ ├── BlokOut1.sln │ └── BlokOut1.vcxproj ├── BlokOut2 │ ├── BlokOut2.c │ ├── BlokOut2.mak │ ├── BlokOut2.sln │ └── BlokOut2.vcxproj ├── Checker1 │ ├── Checker1.c │ ├── Checker1.mak │ ├── Checker1.sln │ └── Checker1.vcxproj ├── Checker2 │ ├── Checker2.c │ ├── Checker2.mak │ ├── Checker2.sln │ └── Checker2.vcxproj ├── Checker3 │ ├── Checker3.c │ ├── Checker3.mak │ ├── Checker3.sln │ └── Checker3.vcxproj ├── Checker4 │ ├── Checker4.c │ ├── Checker4.mak │ ├── Checker4.sln │ └── Checker4.vcxproj ├── Connect │ ├── Connect.c │ ├── Connect.mak │ ├── Connect.sln │ └── Connect.vcxproj └── SysMets │ ├── SysMets.c │ ├── SysMets.h │ ├── SysMets.mak │ ├── SysMets.sln │ └── SysMets.vcxproj ├── Chap08 ├── Beeper1 │ ├── Beeper1.c │ ├── Beeper1.mak │ ├── Beeper1.sln │ └── Beeper1.vcxproj ├── Beeper2 │ ├── Beeper2.c │ ├── Beeper2.mak │ ├── Beeper2.sln │ └── Beeper2.vcxproj ├── Clock │ ├── Clock.c │ ├── Clock.mak │ ├── Clock.sln │ └── Clock.vcxproj ├── DigClock │ ├── DigClock.c │ ├── DigClock.mak │ ├── DigClock.sln │ └── DigClock.vcxproj └── WhatClr │ ├── WhatClr.c │ ├── WhatClr.mak │ ├── WhatClr.sln │ └── WhatClr.vcxproj ├── Chap09 ├── BtnLook │ ├── BtnLook.c │ ├── BtnLook.mak │ ├── BtnLook.sln │ └── BtnLook.vcxproj ├── Colors1 │ ├── Colors1.c │ ├── Colors1.mak │ ├── Colors1.sln │ └── Colors1.vcxproj ├── Environ │ ├── Environ.c │ ├── Environ.mak │ ├── Environ.sln │ └── Environ.vcxproj ├── OwnDraw │ ├── OwnDraw.c │ ├── OwnDraw.mak │ ├── OwnDraw.sln │ └── OwnDraw.vcxproj ├── PopPad1 │ ├── PopPad1.c │ ├── PopPad1.mak │ ├── PopPad1.sln │ └── PopPad1.vcxproj └── head │ ├── head.c │ ├── head.mak │ ├── head.sln │ └── head.vcxproj ├── Chap10 ├── IconDemo │ ├── ICONDEMO.ICO │ ├── IconDemo.c │ ├── IconDemo.mak │ ├── IconDemo.rc │ ├── IconDemo.sln │ ├── IconDemo.vcxproj │ └── RESOURCE.H ├── MenuDemo │ ├── MenuDemo.c │ ├── MenuDemo.mak │ ├── MenuDemo.rc │ ├── MenuDemo.sln │ ├── MenuDemo.vcxproj │ └── RESOURCE.H ├── NoPopups │ ├── NoPopups.c │ ├── NoPopups.mak │ ├── NoPopups.rc │ ├── NoPopups.sln │ ├── NoPopups.vcxproj │ └── RESOURCE.H ├── PoePoem │ ├── POEPOEM.ICO │ ├── POEPOEM.TXT │ ├── PoePoem.c │ ├── PoePoem.mak │ ├── PoePoem.rc │ ├── PoePoem.sln │ ├── PoePoem.vcxproj │ └── RESOURCE.H ├── PoorMenu │ ├── PoorMenu.c │ ├── PoorMenu.mak │ ├── PoorMenu.sln │ └── PoorMenu.vcxproj ├── PopMenu │ ├── PopMenu.c │ ├── PopMenu.mak │ ├── PopMenu.rc │ ├── PopMenu.sln │ ├── PopMenu.vcxproj │ └── RESOURCE.H └── PopPad2 │ ├── POPPAD2.ICO │ ├── PopPad2.c │ ├── PopPad2.mak │ ├── PopPad2.rc │ ├── PopPad2.sln │ ├── PopPad2.vcxproj │ └── RESOURCE.H ├── Chap11 ├── About1 │ ├── About1.c │ ├── About1.ico │ ├── About1.mak │ ├── About1.rc │ ├── About1.sln │ ├── About1.vcxproj │ └── RESOURCE.H ├── About2 │ ├── About2.c │ ├── About2.ico │ ├── About2.mak │ ├── About2.rc │ ├── About2.sln │ ├── About2.vcxproj │ └── RESOURCE.H ├── About3 │ ├── About3.c │ ├── About3.mak │ ├── About3.rc │ ├── About3.sln │ ├── About3.vcxproj │ ├── ICON1.ICO │ └── RESOURCE.H ├── Colors2 │ ├── Colors2.c │ ├── Colors2.mak │ ├── Colors2.rc │ ├── Colors2.sln │ ├── Colors2.vcxproj │ └── RESOURCE.H ├── Colors3 │ ├── Colors3.c │ ├── Colors3.mak │ ├── Colors3.sln │ └── Colors3.vcxproj ├── HexCalc │ ├── HexCalc.c │ ├── HexCalc.dlg │ ├── HexCalc.ico │ ├── HexCalc.mak │ ├── HexCalc.rc │ ├── HexCalc.sln │ ├── HexCalc.vcxproj │ └── RESOURCE.H └── PopPad3 │ ├── POPPAD.ICO │ ├── POPPAD.RC │ ├── PopFile.c │ ├── PopFind.c │ ├── PopFont.c │ ├── PopPad.c │ ├── PopPad3.mak │ ├── PopPad3.sln │ ├── PopPad3.vcxproj │ ├── PopPrnt0.c │ └── RESOURCE.H ├── Chap12 ├── ClipText │ ├── ClipText.c │ ├── ClipText.mak │ ├── ClipText.rc │ ├── ClipText.sln │ ├── ClipText.vcxproj │ └── RESOURCE.H └── ClipView │ ├── ClipView.c │ ├── ClipView.mak │ ├── ClipView.sln │ └── ClipView.vcxproj ├── Chap13 ├── DevCaps2 │ ├── DevCaps2.c │ ├── DevCaps2.mak │ ├── DevCaps2.rc │ ├── DevCaps2.sln │ ├── DevCaps2.vcxproj │ └── RESOURCE.H ├── FormFeed │ ├── FormFeed.c │ ├── FormFeed.mak │ ├── FormFeed.sln │ └── FormFeed.vcxproj ├── PopPad │ ├── POPPAD.ICO │ ├── POPPAD.RC │ ├── PopFile.c │ ├── PopFind.c │ ├── PopFont.c │ ├── PopPad.c │ ├── PopPad.mak │ ├── PopPad.vcxproj │ ├── PopPrnt.c │ ├── Poppad.opt │ ├── Poppad.sln │ └── RESOURCE.H ├── Print1 │ ├── GetPrnDC.c │ ├── Print.c │ ├── Print1.c │ ├── Print1.mak │ ├── Print1.sln │ └── Print1.vcxproj ├── Print2 │ ├── Print2.c │ ├── Print2.mak │ ├── Print2.sln │ └── Print2.vcxproj └── Print3 │ ├── Print.rc │ ├── Print3.c │ ├── Print3.mak │ ├── Print3.sln │ ├── Print3.vcxproj │ └── RESOURCE.H ├── Chap14 ├── BitBlt │ ├── BitBlt.c │ ├── BitBlt.mak │ ├── BitBlt.sln │ └── BitBlt.vcxproj ├── BitMask │ ├── BitMask.c │ ├── BitMask.mak │ ├── BitMask.rc │ ├── BitMask.sln │ ├── BitMask.vcxproj │ ├── Matthew.bmp │ └── RESOURCE.H ├── Blowup │ ├── Blowup.c │ ├── Blowup.mak │ ├── Blowup.rc │ ├── Blowup.sln │ ├── Blowup.vcxproj │ └── RESOURCE.H ├── Bounce │ ├── Bounce.c │ ├── Bounce.cpp │ ├── Bounce.mak │ ├── Bounce.sln │ └── Bounce.vcxproj ├── Bricks1 │ ├── Bricks.bmp │ ├── Bricks1.c │ ├── Bricks1.mak │ ├── Bricks1.rc │ ├── Bricks1.sln │ ├── Bricks1.vcxproj │ └── RESOURCE.H ├── Bricks2 │ ├── Bricks2.c │ ├── Bricks2.mak │ ├── Bricks2.sln │ └── Bricks2.vcxproj ├── Bricks3 │ ├── BRICKS3.C │ ├── BRICKS3.RC │ ├── Bricks.bmp │ ├── Bricks3.mak │ ├── Bricks3.sln │ ├── Bricks3.vcxproj │ └── RESOURCE.H ├── GrafMenu │ ├── Bighelp.bmp │ ├── Editlabl.bmp │ ├── Filelabl.bmp │ ├── Fontlabl.bmp │ ├── GrafMenu.c │ ├── GrafMenu.mak │ ├── GrafMenu.rc │ ├── GrafMenu.sln │ ├── GrafMenu.vcxproj │ └── RESOURCE.H ├── HelloBit │ ├── HelloBit.c │ ├── HelloBit.mak │ ├── HelloBit.rc │ ├── HelloBit.sln │ ├── HelloBit.vcxproj │ └── RESOURCE.H ├── Scramble │ ├── Scramble.c │ ├── Scramble.mak │ ├── Scramble.sln │ └── Scramble.vcxproj ├── Sketch │ ├── Sketch.c │ ├── Sketch.mak │ ├── Sketch.sln │ └── Sketch.vcxproj └── Stretch │ ├── Stretch.c │ ├── Stretch.mak │ ├── Stretch.sln │ └── Stretch.vcxproj ├── Chap15 ├── Apollo11 │ ├── Apollo11.bmp │ ├── Apollo11.c │ ├── Apollo11.mak │ ├── Apollo11.sln │ ├── Apollo11.vcxproj │ ├── ApolloTD.bmp │ └── DibFile.h ├── DibConv │ ├── DibConv.c │ ├── DibConv.mak │ ├── DibConv.rc │ ├── DibConv.sln │ ├── DibConv.vcxproj │ └── RESOURCE.H ├── DibHeads │ ├── DibHeads.c │ ├── DibHeads.mak │ ├── DibHeads.rc │ ├── DibHeads.sln │ ├── DibHeads.vcxproj │ └── RESOURCE.H ├── DibSect │ ├── DibSect.c │ ├── DibSect.mak │ ├── DibSect.rc │ ├── DibSect.sln │ ├── DibSect.vcxproj │ └── RESOURCE.H ├── SeqDisp │ ├── RESOURCE.H │ ├── SeqDisp.c │ ├── SeqDisp.mak │ ├── SeqDisp.rc │ ├── SeqDisp.sln │ └── SeqDisp.vcxproj ├── ShowDib1 │ ├── DibFile.c │ ├── DibFile.h │ ├── RESOURCE.H │ ├── ShowDib1.c │ ├── ShowDib1.mak │ ├── ShowDib1.rc │ ├── ShowDib1.sln │ └── ShowDib1.vcxproj └── ShowDib2 │ ├── DibFile.c │ ├── DibFile.h │ ├── RESOURCE.H │ ├── ShowDib2.mak │ ├── ShowDib2.rc │ ├── ShowDib2.vcxproj │ ├── Showdib2.c │ └── Showdib2.sln ├── Chap16 ├── AllColor │ ├── AllColor.c │ ├── AllColor.mak │ ├── AllColor.sln │ └── AllColor.vcxproj ├── Bounce │ ├── Bounce.c │ ├── Bounce.mak │ ├── Bounce.sln │ ├── Bounce.vcxproj │ └── PalAnim.c ├── Dibble │ ├── DibConv.c │ ├── DibConv.h │ ├── DibHelp.c │ ├── DibHelp.h │ ├── DibPal.c │ ├── DibPal.h │ ├── Dibble.c │ ├── Dibble.mak │ ├── Dibble.rc │ ├── Dibble.sln │ ├── Dibble.vcxproj │ └── RESOURCE.H ├── Fader │ ├── Fader.c │ ├── Fader.mak │ ├── Fader.sln │ └── Fader.vcxproj ├── Grays1 │ ├── Grays1.c │ ├── Grays1.mak │ ├── Grays1.sln │ └── Grays1.vcxproj ├── Grays2 │ ├── Grays2.c │ ├── Grays2.mak │ ├── Grays2.sln │ └── Grays2.vcxproj ├── Grays3 │ ├── Grays3.c │ ├── Grays3.mak │ ├── Grays3.sln │ └── Grays3.vcxproj ├── Pipes │ ├── Pipes.c │ ├── Pipes.mak │ ├── Pipes.sln │ └── Pipes.vcxproj ├── ShowDib3 │ ├── PackeDib.c │ ├── PackeDib.h │ ├── RESOURCE.H │ ├── ShowDib3.c │ ├── ShowDib3.mak │ ├── ShowDib3.rc │ ├── ShowDib3.sln │ └── ShowDib3.vcxproj ├── ShowDib4 │ ├── RESOURCE.H │ ├── ShowDib4.c │ ├── ShowDib4.mak │ ├── ShowDib4.rc │ ├── ShowDib4.sln │ └── ShowDib4.vcxproj ├── ShowDib5 │ ├── RESOURCE.H │ ├── ShowDib5.c │ ├── ShowDib5.mak │ ├── ShowDib5.rc │ ├── ShowDib5.sln │ └── ShowDib5.vcxproj ├── ShowDib6 │ ├── RESOURCE.H │ ├── ShowDib6.c │ ├── ShowDib6.mak │ ├── ShowDib6.rc │ ├── ShowDib6.sln │ └── ShowDib6.vcxproj ├── ShowDib7 │ ├── RESOURCE.H │ ├── ShowDib7.c │ ├── ShowDib7.mak │ ├── ShowDib7.rc │ ├── ShowDib7.sln │ └── ShowDib7.vcxproj ├── ShowDib8 │ ├── RESOURCE.H │ ├── ShowDib8.c │ ├── ShowDib8.mak │ ├── ShowDib8.rc │ ├── ShowDib8.sln │ └── ShowDib8.vcxproj ├── SysPal1 │ ├── SysPal1.c │ ├── SysPal1.mak │ ├── SysPal1.sln │ └── SysPal1.vcxproj ├── SysPal2 │ ├── SysPal2.c │ ├── SysPal2.mak │ ├── SysPal2.sln │ └── SysPal2.vcxproj ├── SysPal3 │ ├── SysPal3.c │ ├── SysPal3.mak │ ├── SysPal3.sln │ └── SysPal3.vcxproj └── Tunnel │ ├── Tunnel.c │ ├── Tunnel.mak │ ├── Tunnel.sln │ └── Tunnel.vcxproj ├── Chap17 ├── ChosFont │ ├── ChosFont.c │ ├── ChosFont.mak │ ├── ChosFont.rc │ ├── ChosFont.sln │ ├── ChosFont.vcxproj │ └── RESOURCE.H ├── EZTest │ ├── EZFont.c │ ├── EZFont.h │ ├── EZTest.c │ ├── EZTest.mak │ ├── EZTest.sln │ ├── EZTest.vcxproj │ ├── FontDemo.c │ ├── FontDemo.rc │ └── RESOURCE.H ├── EndJoin │ ├── EndJoin.c │ ├── EndJoin.mak │ ├── EndJoin.sln │ └── EndJoin.vcxproj ├── FontClip │ ├── FontClip.c │ ├── FontClip.mak │ ├── FontClip.sln │ └── FontClip.vcxproj ├── FontFill │ ├── FontFill.c │ ├── FontFill.mak │ ├── FontFill.sln │ └── FontFill.vcxproj ├── FontOut1 │ ├── FontOut1.c │ ├── FontOut1.mak │ ├── FontOut1.sln │ └── FontOut1.vcxproj ├── FontOut2 │ ├── FontOut2.c │ ├── FontOut2.mak │ ├── FontOut2.sln │ └── FontOut2.vcxproj ├── FontRot │ ├── FontRot.c │ ├── FontRot.mak │ ├── FontRot.sln │ └── FontRot.vcxproj ├── Justify1 │ ├── Justify1.c │ ├── Justify1.mak │ ├── Justify1.rc │ ├── Justify1.sln │ ├── Justify1.vcxproj │ └── RESOURCE.H ├── Justify2 │ ├── Justify2.c │ ├── Justify2.mak │ ├── Justify2.rc │ ├── Justify2.sln │ ├── Justify2.vcxproj │ └── RESOURCE.H ├── PickFont │ ├── PickFont.c │ ├── PickFont.mak │ ├── PickFont.rc │ ├── PickFont.sln │ ├── PickFont.vcxproj │ └── RESOURCE.H └── UniChars │ ├── RESOURCE.H │ ├── Unichars.c │ ├── Unichars.mak │ ├── Unichars.rc │ ├── Unichars.sln │ └── Unichars.vcxproj ├── Chap18 ├── Emf1 │ ├── Emf1.c │ ├── Emf1.mak │ ├── Emf1.sln │ └── Emf1.vcxproj ├── Emf10 │ ├── Emf10.c │ ├── Emf10.mak │ ├── Emf10.sln │ └── Emf10.vcxproj ├── Emf11 │ ├── Emf11.c │ ├── Emf11.mak │ ├── Emf11.sln │ ├── Emf11.vcxproj │ └── emf11.emf ├── Emf12 │ ├── Emf12.c │ ├── Emf12.mak │ ├── Emf12.sln │ ├── Emf12.vcxproj │ └── emf12.emf ├── Emf13 │ ├── Emf13.c │ ├── Emf13.mak │ ├── Emf13.sln │ └── Emf13.vcxproj ├── Emf2 │ ├── Emf2.c │ ├── Emf2.mak │ ├── Emf2.sln │ ├── Emf2.vcxproj │ └── emf2.emf ├── Emf3 │ ├── Emf3.c │ ├── Emf3.mak │ ├── Emf3.sln │ ├── Emf3.vcxproj │ └── emf3.emf ├── Emf4 │ ├── Emf4.c │ ├── Emf4.mak │ ├── Emf4.sln │ ├── Emf4.vcxproj │ └── emf4.emf ├── Emf5 │ ├── Emf5.c │ ├── Emf5.mak │ ├── Emf5.sln │ └── Emf5.vcxproj ├── Emf6 │ ├── Emf6.c │ ├── Emf6.mak │ ├── Emf6.sln │ └── Emf6.vcxproj ├── Emf7 │ ├── Emf7.c │ ├── Emf7.mak │ ├── Emf7.sln │ ├── Emf7.vcxproj │ └── emf7.emf ├── Emf8 │ ├── Emf.aps │ ├── Emf.c │ ├── Emf.rc │ ├── Emf8.c │ ├── Emf8.mak │ ├── Emf8.sln │ ├── Emf8.vcxproj │ ├── RESOURCE.H │ └── emf8.emf ├── Emf9 │ ├── Emf9.c │ ├── Emf9.mak │ ├── Emf9.sln │ └── Emf9.vcxproj ├── EmfView │ ├── EmfView.c │ ├── EmfView.mak │ ├── EmfView.rc │ ├── EmfView.sln │ ├── EmfView.vcxproj │ └── RESOURCE.H └── Metafile │ ├── Metafile.c │ ├── Metafile.mak │ ├── Metafile.sln │ └── Metafile.vcxproj ├── Chap19 └── MDIDemo │ ├── MDIDemo.c │ ├── MDIDemo.mak │ ├── MDIDemo.rc │ ├── MDIDemo.sln │ ├── MDIDemo.vcxproj │ └── RESOURCE.H ├── Chap20 ├── BigJob1 │ ├── BigJob1.c │ ├── BigJob1.mak │ ├── BigJob1.sln │ └── BigJob1.vcxproj ├── BigJob2 │ ├── BigJob2.c │ ├── BigJob2.mak │ ├── BigJob2.sln │ └── BigJob2.vcxproj ├── Multi1 │ ├── Multi1.c │ ├── Multi1.mak │ ├── Multi1.sln │ └── Multi1.vcxproj ├── Multi2 │ ├── Multi2.c │ ├── Multi2.mak │ ├── Multi2.sln │ └── Multi2.vcxproj └── RndRctMT │ ├── RndRctMT.c │ ├── RndRctMT.mak │ ├── RndRctMT.sln │ └── RndRctMT.vcxproj ├── Chap21 ├── EdrTest │ ├── EdrLib.c │ ├── EdrLib.h │ ├── EdrLib.mak │ ├── EdrLib.vcxproj │ ├── EdrTest.c │ ├── EdrTest.mak │ ├── EdrTest.sln │ └── EdrTest.vcxproj ├── ShowBit │ ├── BITMAP1.BMP │ ├── BITMAP2.BMP │ ├── BITMAP3.BMP │ ├── BITMAP4.BMP │ ├── BITMAP5.BMP │ ├── BITMAP6.BMP │ ├── BITMAP7.BMP │ ├── BITMAP8.BMP │ ├── BITMAP9.BMP │ ├── BitLib.aps │ ├── BitLib.c │ ├── BitLib.mak │ ├── BitLib.rc │ ├── BitLib.vcxproj │ ├── RESOURCE.H │ ├── ShowBit.c │ ├── ShowBit.mak │ ├── ShowBit.sln │ └── ShowBit.vcxproj └── StrProg │ ├── RESOURCE.H │ ├── StrLib.c │ ├── StrLib.h │ ├── StrLib.mak │ ├── StrLib.vcxproj │ ├── StrProg.c │ ├── StrProg.mak │ ├── StrProg.rc │ ├── StrProg.sln │ └── StrProg.vcxproj ├── Chap22 ├── AddSynth │ ├── AddSynth.c │ ├── AddSynth.h │ ├── AddSynth.mak │ ├── AddSynth.rc │ ├── AddSynth.sln │ ├── AddSynth.vcxproj │ ├── Clarinet.wav │ ├── Oboe.wav │ ├── RESOURCE.H │ └── Trumpet.wav ├── BachTocc │ ├── BachTocc.c │ ├── BachTocc.mak │ ├── BachTocc.sln │ └── BachTocc.vcxproj ├── Drum │ ├── DRUM.ICO │ ├── Drum.c │ ├── Drum.mak │ ├── Drum.rc │ ├── Drum.sln │ ├── Drum.vcxproj │ ├── DrumFile.c │ ├── DrumFile.h │ ├── DrumTime.c │ ├── DrumTime.h │ └── RESOURCE.H ├── KBMidi │ ├── KBMidi.c │ ├── KBMidi.mak │ ├── KBMidi.sln │ └── KBMidi.vcxproj ├── Record1 │ ├── RESOURCE.H │ ├── Record.rc │ ├── Record1.c │ ├── Record1.mak │ ├── Record1.sln │ └── Record1.vcxproj ├── Record2 │ ├── Record2.c │ ├── Record2.mak │ ├── Record2.sln │ ├── Record2.vcxproj │ └── record2.wav ├── Record3 │ ├── Record3.c │ ├── Record3.mak │ ├── Record3.sln │ ├── Record3.vcxproj │ └── record3.wav ├── SineWave │ ├── RESOURCE.H │ ├── SineWave.c │ ├── SineWave.mak │ ├── SineWave.rc │ ├── SineWave.sln │ └── SineWave.vcxproj ├── TestMci │ ├── RESOURCE.H │ ├── TestMci.c │ ├── TestMci.mak │ ├── TestMci.rc │ ├── TestMci.sln │ └── TestMci.vcxproj └── WakeUp │ ├── WakeUp.c │ ├── WakeUp.mak │ ├── WakeUp.sln │ └── WakeUp.vcxproj └── Chap23 ├── NetTime ├── NetTime.c ├── NetTime.mak ├── NetTime.rc ├── NetTime.sln ├── NetTime.vcxproj └── resource.h └── UpdDemo ├── UpdDemo.c ├── UpdDemo.mak ├── UpdDemo.rc ├── UpdDemo.sln ├── UpdDemo.vcxproj └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/README.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/readme.txt -------------------------------------------------------------------------------- /src/AllProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/AllProjects.sln -------------------------------------------------------------------------------- /src/Chap01/HelloMsg/HelloMsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap01/HelloMsg/HelloMsg.c -------------------------------------------------------------------------------- /src/Chap01/HelloMsg/HelloMsg.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap01/HelloMsg/HelloMsg.mak -------------------------------------------------------------------------------- /src/Chap01/HelloMsg/HelloMsg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap01/HelloMsg/HelloMsg.sln -------------------------------------------------------------------------------- /src/Chap01/HelloMsg/HelloMsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap01/HelloMsg/HelloMsg.vcxproj -------------------------------------------------------------------------------- /src/Chap02/ScrnSize/ScrnSize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap02/ScrnSize/ScrnSize.c -------------------------------------------------------------------------------- /src/Chap02/ScrnSize/ScrnSize.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap02/ScrnSize/ScrnSize.mak -------------------------------------------------------------------------------- /src/Chap02/ScrnSize/ScrnSize.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap02/ScrnSize/ScrnSize.sln -------------------------------------------------------------------------------- /src/Chap02/ScrnSize/ScrnSize.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap02/ScrnSize/ScrnSize.vcxproj -------------------------------------------------------------------------------- /src/Chap02/ScrnSize/ScrnSize.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap02/ScrnSize/ScrnSize.vcxproj.filters -------------------------------------------------------------------------------- /src/Chap03/HelloWin/HelloWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap03/HelloWin/HelloWin.c -------------------------------------------------------------------------------- /src/Chap03/HelloWin/HelloWin.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap03/HelloWin/HelloWin.mak -------------------------------------------------------------------------------- /src/Chap03/HelloWin/HelloWin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap03/HelloWin/HelloWin.sln -------------------------------------------------------------------------------- /src/Chap03/HelloWin/HelloWin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap03/HelloWin/HelloWin.vcxproj -------------------------------------------------------------------------------- /src/Chap03/HelloWin/HelloWin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap03/HelloWin/HelloWin.wav -------------------------------------------------------------------------------- /src/Chap04/SysMets1/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/MAKEFILE -------------------------------------------------------------------------------- /src/Chap04/SysMets1/SysMets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/SysMets.h -------------------------------------------------------------------------------- /src/Chap04/SysMets1/SysMets1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/SysMets1.c -------------------------------------------------------------------------------- /src/Chap04/SysMets1/SysMets1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/SysMets1.mak -------------------------------------------------------------------------------- /src/Chap04/SysMets1/SysMets1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/SysMets1.sln -------------------------------------------------------------------------------- /src/Chap04/SysMets1/SysMets1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets1/SysMets1.vcxproj -------------------------------------------------------------------------------- /src/Chap04/SysMets2/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/MAKEFILE -------------------------------------------------------------------------------- /src/Chap04/SysMets2/SysMets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/SysMets.h -------------------------------------------------------------------------------- /src/Chap04/SysMets2/SysMets2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/SysMets2.c -------------------------------------------------------------------------------- /src/Chap04/SysMets2/SysMets2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/SysMets2.mak -------------------------------------------------------------------------------- /src/Chap04/SysMets2/SysMets2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/SysMets2.sln -------------------------------------------------------------------------------- /src/Chap04/SysMets2/SysMets2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets2/SysMets2.vcxproj -------------------------------------------------------------------------------- /src/Chap04/SysMets3/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/MAKEFILE -------------------------------------------------------------------------------- /src/Chap04/SysMets3/SysMets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/SysMets.h -------------------------------------------------------------------------------- /src/Chap04/SysMets3/SysMets3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/SysMets3.c -------------------------------------------------------------------------------- /src/Chap04/SysMets3/SysMets3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/SysMets3.mak -------------------------------------------------------------------------------- /src/Chap04/SysMets3/SysMets3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/SysMets3.sln -------------------------------------------------------------------------------- /src/Chap04/SysMets3/SysMets3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap04/SysMets3/SysMets3.vcxproj -------------------------------------------------------------------------------- /src/Chap05/AltWind/AltWind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/AltWind/AltWind.c -------------------------------------------------------------------------------- /src/Chap05/AltWind/AltWind.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/AltWind/AltWind.mak -------------------------------------------------------------------------------- /src/Chap05/AltWind/AltWind.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/AltWind/AltWind.sln -------------------------------------------------------------------------------- /src/Chap05/AltWind/AltWind.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/AltWind/AltWind.vcxproj -------------------------------------------------------------------------------- /src/Chap05/Bezier/Bezier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Bezier/Bezier.c -------------------------------------------------------------------------------- /src/Chap05/Bezier/Bezier.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Bezier/Bezier.mak -------------------------------------------------------------------------------- /src/Chap05/Bezier/Bezier.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Bezier/Bezier.sln -------------------------------------------------------------------------------- /src/Chap05/Bezier/Bezier.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Bezier/Bezier.vcxproj -------------------------------------------------------------------------------- /src/Chap05/Clover/Clover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Clover/Clover.c -------------------------------------------------------------------------------- /src/Chap05/Clover/Clover.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Clover/Clover.mak -------------------------------------------------------------------------------- /src/Chap05/Clover/Clover.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Clover/Clover.sln -------------------------------------------------------------------------------- /src/Chap05/Clover/Clover.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/Clover/Clover.vcxproj -------------------------------------------------------------------------------- /src/Chap05/DevCaps1/DevCaps1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/DevCaps1/DevCaps1.c -------------------------------------------------------------------------------- /src/Chap05/DevCaps1/DevCaps1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/DevCaps1/DevCaps1.mak -------------------------------------------------------------------------------- /src/Chap05/DevCaps1/DevCaps1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/DevCaps1/DevCaps1.sln -------------------------------------------------------------------------------- /src/Chap05/DevCaps1/DevCaps1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/DevCaps1/DevCaps1.vcxproj -------------------------------------------------------------------------------- /src/Chap05/LineDemo/LineDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/LineDemo/LineDemo.c -------------------------------------------------------------------------------- /src/Chap05/LineDemo/LineDemo.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/LineDemo/LineDemo.mak -------------------------------------------------------------------------------- /src/Chap05/LineDemo/LineDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/LineDemo/LineDemo.sln -------------------------------------------------------------------------------- /src/Chap05/LineDemo/LineDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/LineDemo/LineDemo.vcxproj -------------------------------------------------------------------------------- /src/Chap05/RandRect/RandRect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/RandRect/RandRect.c -------------------------------------------------------------------------------- /src/Chap05/RandRect/RandRect.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/RandRect/RandRect.mak -------------------------------------------------------------------------------- /src/Chap05/RandRect/RandRect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/RandRect/RandRect.sln -------------------------------------------------------------------------------- /src/Chap05/RandRect/RandRect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/RandRect/RandRect.vcxproj -------------------------------------------------------------------------------- /src/Chap05/SineWave/SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/SineWave/SineWave.c -------------------------------------------------------------------------------- /src/Chap05/SineWave/SineWave.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/SineWave/SineWave.mak -------------------------------------------------------------------------------- /src/Chap05/SineWave/SineWave.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/SineWave/SineWave.sln -------------------------------------------------------------------------------- /src/Chap05/SineWave/SineWave.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/SineWave/SineWave.vcxproj -------------------------------------------------------------------------------- /src/Chap05/WhatSize/WhatSize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/WhatSize/WhatSize.c -------------------------------------------------------------------------------- /src/Chap05/WhatSize/WhatSize.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/WhatSize/WhatSize.mak -------------------------------------------------------------------------------- /src/Chap05/WhatSize/WhatSize.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/WhatSize/WhatSize.sln -------------------------------------------------------------------------------- /src/Chap05/WhatSize/WhatSize.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap05/WhatSize/WhatSize.vcxproj -------------------------------------------------------------------------------- /src/Chap06/KeyView1/KeyView1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView1/KeyView1.c -------------------------------------------------------------------------------- /src/Chap06/KeyView1/KeyView1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView1/KeyView1.mak -------------------------------------------------------------------------------- /src/Chap06/KeyView1/KeyView1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView1/KeyView1.sln -------------------------------------------------------------------------------- /src/Chap06/KeyView1/KeyView1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView1/KeyView1.vcxproj -------------------------------------------------------------------------------- /src/Chap06/KeyView2/KeyView2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView2/KeyView2.c -------------------------------------------------------------------------------- /src/Chap06/KeyView2/KeyView2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView2/KeyView2.mak -------------------------------------------------------------------------------- /src/Chap06/KeyView2/KeyView2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView2/KeyView2.sln -------------------------------------------------------------------------------- /src/Chap06/KeyView2/KeyView2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/KeyView2/KeyView2.vcxproj -------------------------------------------------------------------------------- /src/Chap06/StokFont/StokFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/StokFont/StokFont.c -------------------------------------------------------------------------------- /src/Chap06/StokFont/StokFont.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/StokFont/StokFont.mak -------------------------------------------------------------------------------- /src/Chap06/StokFont/StokFont.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/StokFont/StokFont.sln -------------------------------------------------------------------------------- /src/Chap06/StokFont/StokFont.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/StokFont/StokFont.vcxproj -------------------------------------------------------------------------------- /src/Chap06/SysMets4/SysMets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/SysMets4/SysMets.h -------------------------------------------------------------------------------- /src/Chap06/SysMets4/SysMets4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/SysMets4/SysMets4.c -------------------------------------------------------------------------------- /src/Chap06/SysMets4/SysMets4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/SysMets4/SysMets4.mak -------------------------------------------------------------------------------- /src/Chap06/SysMets4/SysMets4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/SysMets4/SysMets4.sln -------------------------------------------------------------------------------- /src/Chap06/SysMets4/SysMets4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/SysMets4/SysMets4.vcxproj -------------------------------------------------------------------------------- /src/Chap06/Typer/Typer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/Typer/Typer.c -------------------------------------------------------------------------------- /src/Chap06/Typer/Typer.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/Typer/Typer.mak -------------------------------------------------------------------------------- /src/Chap06/Typer/Typer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/Typer/Typer.sln -------------------------------------------------------------------------------- /src/Chap06/Typer/Typer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/Typer/Typer.vcxproj -------------------------------------------------------------------------------- /src/Chap06/Typer/Typer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap06/Typer/Typer.vcxproj.filters -------------------------------------------------------------------------------- /src/Chap07/BlokOut1/BlokOut1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut1/BlokOut1.c -------------------------------------------------------------------------------- /src/Chap07/BlokOut1/BlokOut1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut1/BlokOut1.mak -------------------------------------------------------------------------------- /src/Chap07/BlokOut1/BlokOut1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut1/BlokOut1.sln -------------------------------------------------------------------------------- /src/Chap07/BlokOut1/BlokOut1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut1/BlokOut1.vcxproj -------------------------------------------------------------------------------- /src/Chap07/BlokOut2/BlokOut2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut2/BlokOut2.c -------------------------------------------------------------------------------- /src/Chap07/BlokOut2/BlokOut2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut2/BlokOut2.mak -------------------------------------------------------------------------------- /src/Chap07/BlokOut2/BlokOut2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut2/BlokOut2.sln -------------------------------------------------------------------------------- /src/Chap07/BlokOut2/BlokOut2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/BlokOut2/BlokOut2.vcxproj -------------------------------------------------------------------------------- /src/Chap07/Checker1/Checker1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker1/Checker1.c -------------------------------------------------------------------------------- /src/Chap07/Checker1/Checker1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker1/Checker1.mak -------------------------------------------------------------------------------- /src/Chap07/Checker1/Checker1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker1/Checker1.sln -------------------------------------------------------------------------------- /src/Chap07/Checker1/Checker1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker1/Checker1.vcxproj -------------------------------------------------------------------------------- /src/Chap07/Checker2/Checker2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker2/Checker2.c -------------------------------------------------------------------------------- /src/Chap07/Checker2/Checker2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker2/Checker2.mak -------------------------------------------------------------------------------- /src/Chap07/Checker2/Checker2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker2/Checker2.sln -------------------------------------------------------------------------------- /src/Chap07/Checker2/Checker2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker2/Checker2.vcxproj -------------------------------------------------------------------------------- /src/Chap07/Checker3/Checker3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker3/Checker3.c -------------------------------------------------------------------------------- /src/Chap07/Checker3/Checker3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker3/Checker3.mak -------------------------------------------------------------------------------- /src/Chap07/Checker3/Checker3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker3/Checker3.sln -------------------------------------------------------------------------------- /src/Chap07/Checker3/Checker3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker3/Checker3.vcxproj -------------------------------------------------------------------------------- /src/Chap07/Checker4/Checker4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker4/Checker4.c -------------------------------------------------------------------------------- /src/Chap07/Checker4/Checker4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker4/Checker4.mak -------------------------------------------------------------------------------- /src/Chap07/Checker4/Checker4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker4/Checker4.sln -------------------------------------------------------------------------------- /src/Chap07/Checker4/Checker4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Checker4/Checker4.vcxproj -------------------------------------------------------------------------------- /src/Chap07/Connect/Connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Connect/Connect.c -------------------------------------------------------------------------------- /src/Chap07/Connect/Connect.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Connect/Connect.mak -------------------------------------------------------------------------------- /src/Chap07/Connect/Connect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Connect/Connect.sln -------------------------------------------------------------------------------- /src/Chap07/Connect/Connect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/Connect/Connect.vcxproj -------------------------------------------------------------------------------- /src/Chap07/SysMets/SysMets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/SysMets/SysMets.c -------------------------------------------------------------------------------- /src/Chap07/SysMets/SysMets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/SysMets/SysMets.h -------------------------------------------------------------------------------- /src/Chap07/SysMets/SysMets.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/SysMets/SysMets.mak -------------------------------------------------------------------------------- /src/Chap07/SysMets/SysMets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/SysMets/SysMets.sln -------------------------------------------------------------------------------- /src/Chap07/SysMets/SysMets.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap07/SysMets/SysMets.vcxproj -------------------------------------------------------------------------------- /src/Chap08/Beeper1/Beeper1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper1/Beeper1.c -------------------------------------------------------------------------------- /src/Chap08/Beeper1/Beeper1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper1/Beeper1.mak -------------------------------------------------------------------------------- /src/Chap08/Beeper1/Beeper1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper1/Beeper1.sln -------------------------------------------------------------------------------- /src/Chap08/Beeper1/Beeper1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper1/Beeper1.vcxproj -------------------------------------------------------------------------------- /src/Chap08/Beeper2/Beeper2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper2/Beeper2.c -------------------------------------------------------------------------------- /src/Chap08/Beeper2/Beeper2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper2/Beeper2.mak -------------------------------------------------------------------------------- /src/Chap08/Beeper2/Beeper2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper2/Beeper2.sln -------------------------------------------------------------------------------- /src/Chap08/Beeper2/Beeper2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Beeper2/Beeper2.vcxproj -------------------------------------------------------------------------------- /src/Chap08/Clock/Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Clock/Clock.c -------------------------------------------------------------------------------- /src/Chap08/Clock/Clock.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Clock/Clock.mak -------------------------------------------------------------------------------- /src/Chap08/Clock/Clock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Clock/Clock.sln -------------------------------------------------------------------------------- /src/Chap08/Clock/Clock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/Clock/Clock.vcxproj -------------------------------------------------------------------------------- /src/Chap08/DigClock/DigClock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/DigClock/DigClock.c -------------------------------------------------------------------------------- /src/Chap08/DigClock/DigClock.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/DigClock/DigClock.mak -------------------------------------------------------------------------------- /src/Chap08/DigClock/DigClock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/DigClock/DigClock.sln -------------------------------------------------------------------------------- /src/Chap08/DigClock/DigClock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/DigClock/DigClock.vcxproj -------------------------------------------------------------------------------- /src/Chap08/WhatClr/WhatClr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/WhatClr/WhatClr.c -------------------------------------------------------------------------------- /src/Chap08/WhatClr/WhatClr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/WhatClr/WhatClr.mak -------------------------------------------------------------------------------- /src/Chap08/WhatClr/WhatClr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/WhatClr/WhatClr.sln -------------------------------------------------------------------------------- /src/Chap08/WhatClr/WhatClr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap08/WhatClr/WhatClr.vcxproj -------------------------------------------------------------------------------- /src/Chap09/BtnLook/BtnLook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/BtnLook/BtnLook.c -------------------------------------------------------------------------------- /src/Chap09/BtnLook/BtnLook.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/BtnLook/BtnLook.mak -------------------------------------------------------------------------------- /src/Chap09/BtnLook/BtnLook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/BtnLook/BtnLook.sln -------------------------------------------------------------------------------- /src/Chap09/BtnLook/BtnLook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/BtnLook/BtnLook.vcxproj -------------------------------------------------------------------------------- /src/Chap09/Colors1/Colors1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Colors1/Colors1.c -------------------------------------------------------------------------------- /src/Chap09/Colors1/Colors1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Colors1/Colors1.mak -------------------------------------------------------------------------------- /src/Chap09/Colors1/Colors1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Colors1/Colors1.sln -------------------------------------------------------------------------------- /src/Chap09/Colors1/Colors1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Colors1/Colors1.vcxproj -------------------------------------------------------------------------------- /src/Chap09/Environ/Environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Environ/Environ.c -------------------------------------------------------------------------------- /src/Chap09/Environ/Environ.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Environ/Environ.mak -------------------------------------------------------------------------------- /src/Chap09/Environ/Environ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Environ/Environ.sln -------------------------------------------------------------------------------- /src/Chap09/Environ/Environ.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/Environ/Environ.vcxproj -------------------------------------------------------------------------------- /src/Chap09/OwnDraw/OwnDraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/OwnDraw/OwnDraw.c -------------------------------------------------------------------------------- /src/Chap09/OwnDraw/OwnDraw.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/OwnDraw/OwnDraw.mak -------------------------------------------------------------------------------- /src/Chap09/OwnDraw/OwnDraw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/OwnDraw/OwnDraw.sln -------------------------------------------------------------------------------- /src/Chap09/OwnDraw/OwnDraw.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/OwnDraw/OwnDraw.vcxproj -------------------------------------------------------------------------------- /src/Chap09/PopPad1/PopPad1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/PopPad1/PopPad1.c -------------------------------------------------------------------------------- /src/Chap09/PopPad1/PopPad1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/PopPad1/PopPad1.mak -------------------------------------------------------------------------------- /src/Chap09/PopPad1/PopPad1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/PopPad1/PopPad1.sln -------------------------------------------------------------------------------- /src/Chap09/PopPad1/PopPad1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/PopPad1/PopPad1.vcxproj -------------------------------------------------------------------------------- /src/Chap09/head/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/head/head.c -------------------------------------------------------------------------------- /src/Chap09/head/head.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/head/head.mak -------------------------------------------------------------------------------- /src/Chap09/head/head.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/head/head.sln -------------------------------------------------------------------------------- /src/Chap09/head/head.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap09/head/head.vcxproj -------------------------------------------------------------------------------- /src/Chap10/IconDemo/ICONDEMO.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/ICONDEMO.ICO -------------------------------------------------------------------------------- /src/Chap10/IconDemo/IconDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/IconDemo.c -------------------------------------------------------------------------------- /src/Chap10/IconDemo/IconDemo.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/IconDemo.mak -------------------------------------------------------------------------------- /src/Chap10/IconDemo/IconDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/IconDemo.rc -------------------------------------------------------------------------------- /src/Chap10/IconDemo/IconDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/IconDemo.sln -------------------------------------------------------------------------------- /src/Chap10/IconDemo/IconDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/IconDemo.vcxproj -------------------------------------------------------------------------------- /src/Chap10/IconDemo/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/IconDemo/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/MenuDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/MenuDemo.c -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/MenuDemo.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/MenuDemo.mak -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/MenuDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/MenuDemo.rc -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/MenuDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/MenuDemo.sln -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/MenuDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/MenuDemo.vcxproj -------------------------------------------------------------------------------- /src/Chap10/MenuDemo/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/MenuDemo/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap10/NoPopups/NoPopups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/NoPopups.c -------------------------------------------------------------------------------- /src/Chap10/NoPopups/NoPopups.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/NoPopups.mak -------------------------------------------------------------------------------- /src/Chap10/NoPopups/NoPopups.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/NoPopups.rc -------------------------------------------------------------------------------- /src/Chap10/NoPopups/NoPopups.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/NoPopups.sln -------------------------------------------------------------------------------- /src/Chap10/NoPopups/NoPopups.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/NoPopups.vcxproj -------------------------------------------------------------------------------- /src/Chap10/NoPopups/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/NoPopups/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap10/PoePoem/POEPOEM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/POEPOEM.ICO -------------------------------------------------------------------------------- /src/Chap10/PoePoem/POEPOEM.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/POEPOEM.TXT -------------------------------------------------------------------------------- /src/Chap10/PoePoem/PoePoem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/PoePoem.c -------------------------------------------------------------------------------- /src/Chap10/PoePoem/PoePoem.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/PoePoem.mak -------------------------------------------------------------------------------- /src/Chap10/PoePoem/PoePoem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/PoePoem.rc -------------------------------------------------------------------------------- /src/Chap10/PoePoem/PoePoem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/PoePoem.sln -------------------------------------------------------------------------------- /src/Chap10/PoePoem/PoePoem.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/PoePoem.vcxproj -------------------------------------------------------------------------------- /src/Chap10/PoePoem/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoePoem/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap10/PoorMenu/PoorMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoorMenu/PoorMenu.c -------------------------------------------------------------------------------- /src/Chap10/PoorMenu/PoorMenu.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoorMenu/PoorMenu.mak -------------------------------------------------------------------------------- /src/Chap10/PoorMenu/PoorMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoorMenu/PoorMenu.sln -------------------------------------------------------------------------------- /src/Chap10/PoorMenu/PoorMenu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PoorMenu/PoorMenu.vcxproj -------------------------------------------------------------------------------- /src/Chap10/PopMenu/PopMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/PopMenu.c -------------------------------------------------------------------------------- /src/Chap10/PopMenu/PopMenu.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/PopMenu.mak -------------------------------------------------------------------------------- /src/Chap10/PopMenu/PopMenu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/PopMenu.rc -------------------------------------------------------------------------------- /src/Chap10/PopMenu/PopMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/PopMenu.sln -------------------------------------------------------------------------------- /src/Chap10/PopMenu/PopMenu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/PopMenu.vcxproj -------------------------------------------------------------------------------- /src/Chap10/PopMenu/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopMenu/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap10/PopPad2/POPPAD2.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/POPPAD2.ICO -------------------------------------------------------------------------------- /src/Chap10/PopPad2/PopPad2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/PopPad2.c -------------------------------------------------------------------------------- /src/Chap10/PopPad2/PopPad2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/PopPad2.mak -------------------------------------------------------------------------------- /src/Chap10/PopPad2/PopPad2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/PopPad2.rc -------------------------------------------------------------------------------- /src/Chap10/PopPad2/PopPad2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/PopPad2.sln -------------------------------------------------------------------------------- /src/Chap10/PopPad2/PopPad2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/PopPad2.vcxproj -------------------------------------------------------------------------------- /src/Chap10/PopPad2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap10/PopPad2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/About1/About1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.c -------------------------------------------------------------------------------- /src/Chap11/About1/About1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.ico -------------------------------------------------------------------------------- /src/Chap11/About1/About1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.mak -------------------------------------------------------------------------------- /src/Chap11/About1/About1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.rc -------------------------------------------------------------------------------- /src/Chap11/About1/About1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.sln -------------------------------------------------------------------------------- /src/Chap11/About1/About1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/About1.vcxproj -------------------------------------------------------------------------------- /src/Chap11/About1/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About1/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/About2/About2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.c -------------------------------------------------------------------------------- /src/Chap11/About2/About2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.ico -------------------------------------------------------------------------------- /src/Chap11/About2/About2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.mak -------------------------------------------------------------------------------- /src/Chap11/About2/About2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.rc -------------------------------------------------------------------------------- /src/Chap11/About2/About2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.sln -------------------------------------------------------------------------------- /src/Chap11/About2/About2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/About2.vcxproj -------------------------------------------------------------------------------- /src/Chap11/About2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/About3/About3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/About3.c -------------------------------------------------------------------------------- /src/Chap11/About3/About3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/About3.mak -------------------------------------------------------------------------------- /src/Chap11/About3/About3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/About3.rc -------------------------------------------------------------------------------- /src/Chap11/About3/About3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/About3.sln -------------------------------------------------------------------------------- /src/Chap11/About3/About3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/About3.vcxproj -------------------------------------------------------------------------------- /src/Chap11/About3/ICON1.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/ICON1.ICO -------------------------------------------------------------------------------- /src/Chap11/About3/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/About3/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/Colors2/Colors2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/Colors2.c -------------------------------------------------------------------------------- /src/Chap11/Colors2/Colors2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/Colors2.mak -------------------------------------------------------------------------------- /src/Chap11/Colors2/Colors2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/Colors2.rc -------------------------------------------------------------------------------- /src/Chap11/Colors2/Colors2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/Colors2.sln -------------------------------------------------------------------------------- /src/Chap11/Colors2/Colors2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/Colors2.vcxproj -------------------------------------------------------------------------------- /src/Chap11/Colors2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/Colors3/Colors3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors3/Colors3.c -------------------------------------------------------------------------------- /src/Chap11/Colors3/Colors3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors3/Colors3.mak -------------------------------------------------------------------------------- /src/Chap11/Colors3/Colors3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors3/Colors3.sln -------------------------------------------------------------------------------- /src/Chap11/Colors3/Colors3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/Colors3/Colors3.vcxproj -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.c -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.dlg -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.ico -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.mak -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.rc -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.sln -------------------------------------------------------------------------------- /src/Chap11/HexCalc/HexCalc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/HexCalc.vcxproj -------------------------------------------------------------------------------- /src/Chap11/HexCalc/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/HexCalc/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap11/PopPad3/POPPAD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/POPPAD.ICO -------------------------------------------------------------------------------- /src/Chap11/PopPad3/POPPAD.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/POPPAD.RC -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopFile.c -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopFind.c -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopFont.c -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopPad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopPad.c -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopPad3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopPad3.mak -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopPad3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopPad3.sln -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopPad3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopPad3.vcxproj -------------------------------------------------------------------------------- /src/Chap11/PopPad3/PopPrnt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/PopPrnt0.c -------------------------------------------------------------------------------- /src/Chap11/PopPad3/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap11/PopPad3/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap12/ClipText/ClipText.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/ClipText.c -------------------------------------------------------------------------------- /src/Chap12/ClipText/ClipText.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/ClipText.mak -------------------------------------------------------------------------------- /src/Chap12/ClipText/ClipText.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/ClipText.rc -------------------------------------------------------------------------------- /src/Chap12/ClipText/ClipText.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/ClipText.sln -------------------------------------------------------------------------------- /src/Chap12/ClipText/ClipText.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/ClipText.vcxproj -------------------------------------------------------------------------------- /src/Chap12/ClipText/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipText/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap12/ClipView/ClipView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipView/ClipView.c -------------------------------------------------------------------------------- /src/Chap12/ClipView/ClipView.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipView/ClipView.mak -------------------------------------------------------------------------------- /src/Chap12/ClipView/ClipView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipView/ClipView.sln -------------------------------------------------------------------------------- /src/Chap12/ClipView/ClipView.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap12/ClipView/ClipView.vcxproj -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/DevCaps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/DevCaps2.c -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/DevCaps2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/DevCaps2.mak -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/DevCaps2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/DevCaps2.rc -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/DevCaps2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/DevCaps2.sln -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/DevCaps2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/DevCaps2.vcxproj -------------------------------------------------------------------------------- /src/Chap13/DevCaps2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/DevCaps2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap13/FormFeed/FormFeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/FormFeed/FormFeed.c -------------------------------------------------------------------------------- /src/Chap13/FormFeed/FormFeed.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/FormFeed/FormFeed.mak -------------------------------------------------------------------------------- /src/Chap13/FormFeed/FormFeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/FormFeed/FormFeed.sln -------------------------------------------------------------------------------- /src/Chap13/FormFeed/FormFeed.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/FormFeed/FormFeed.vcxproj -------------------------------------------------------------------------------- /src/Chap13/PopPad/POPPAD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/POPPAD.ICO -------------------------------------------------------------------------------- /src/Chap13/PopPad/POPPAD.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/POPPAD.RC -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopFile.c -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopFind.c -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopFont.c -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopPad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopPad.c -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopPad.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopPad.mak -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopPad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopPad.vcxproj -------------------------------------------------------------------------------- /src/Chap13/PopPad/PopPrnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/PopPrnt.c -------------------------------------------------------------------------------- /src/Chap13/PopPad/Poppad.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/Poppad.opt -------------------------------------------------------------------------------- /src/Chap13/PopPad/Poppad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/Poppad.sln -------------------------------------------------------------------------------- /src/Chap13/PopPad/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/PopPad/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap13/Print1/GetPrnDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/GetPrnDC.c -------------------------------------------------------------------------------- /src/Chap13/Print1/Print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/Print.c -------------------------------------------------------------------------------- /src/Chap13/Print1/Print1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/Print1.c -------------------------------------------------------------------------------- /src/Chap13/Print1/Print1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/Print1.mak -------------------------------------------------------------------------------- /src/Chap13/Print1/Print1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/Print1.sln -------------------------------------------------------------------------------- /src/Chap13/Print1/Print1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print1/Print1.vcxproj -------------------------------------------------------------------------------- /src/Chap13/Print2/Print2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print2/Print2.c -------------------------------------------------------------------------------- /src/Chap13/Print2/Print2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print2/Print2.mak -------------------------------------------------------------------------------- /src/Chap13/Print2/Print2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print2/Print2.sln -------------------------------------------------------------------------------- /src/Chap13/Print2/Print2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print2/Print2.vcxproj -------------------------------------------------------------------------------- /src/Chap13/Print3/Print.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/Print.rc -------------------------------------------------------------------------------- /src/Chap13/Print3/Print3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/Print3.c -------------------------------------------------------------------------------- /src/Chap13/Print3/Print3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/Print3.mak -------------------------------------------------------------------------------- /src/Chap13/Print3/Print3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/Print3.sln -------------------------------------------------------------------------------- /src/Chap13/Print3/Print3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/Print3.vcxproj -------------------------------------------------------------------------------- /src/Chap13/Print3/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap13/Print3/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/BitBlt/BitBlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitBlt/BitBlt.c -------------------------------------------------------------------------------- /src/Chap14/BitBlt/BitBlt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitBlt/BitBlt.mak -------------------------------------------------------------------------------- /src/Chap14/BitBlt/BitBlt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitBlt/BitBlt.sln -------------------------------------------------------------------------------- /src/Chap14/BitBlt/BitBlt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitBlt/BitBlt.vcxproj -------------------------------------------------------------------------------- /src/Chap14/BitMask/BitMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/BitMask.c -------------------------------------------------------------------------------- /src/Chap14/BitMask/BitMask.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/BitMask.mak -------------------------------------------------------------------------------- /src/Chap14/BitMask/BitMask.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/BitMask.rc -------------------------------------------------------------------------------- /src/Chap14/BitMask/BitMask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/BitMask.sln -------------------------------------------------------------------------------- /src/Chap14/BitMask/BitMask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/BitMask.vcxproj -------------------------------------------------------------------------------- /src/Chap14/BitMask/Matthew.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/Matthew.bmp -------------------------------------------------------------------------------- /src/Chap14/BitMask/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/BitMask/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/Blowup/Blowup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/Blowup.c -------------------------------------------------------------------------------- /src/Chap14/Blowup/Blowup.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/Blowup.mak -------------------------------------------------------------------------------- /src/Chap14/Blowup/Blowup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/Blowup.rc -------------------------------------------------------------------------------- /src/Chap14/Blowup/Blowup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/Blowup.sln -------------------------------------------------------------------------------- /src/Chap14/Blowup/Blowup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/Blowup.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Blowup/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Blowup/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/Bounce/Bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bounce/Bounce.c -------------------------------------------------------------------------------- /src/Chap14/Bounce/Bounce.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Chap14/Bounce/Bounce.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bounce/Bounce.mak -------------------------------------------------------------------------------- /src/Chap14/Bounce/Bounce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bounce/Bounce.sln -------------------------------------------------------------------------------- /src/Chap14/Bounce/Bounce.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bounce/Bounce.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks.bmp -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks1.c -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks1.mak -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks1.rc -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks1.sln -------------------------------------------------------------------------------- /src/Chap14/Bricks1/Bricks1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/Bricks1.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Bricks1/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks1/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/Bricks2/Bricks2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks2/Bricks2.c -------------------------------------------------------------------------------- /src/Chap14/Bricks2/Bricks2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks2/Bricks2.mak -------------------------------------------------------------------------------- /src/Chap14/Bricks2/Bricks2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks2/Bricks2.sln -------------------------------------------------------------------------------- /src/Chap14/Bricks2/Bricks2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks2/Bricks2.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Bricks3/BRICKS3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/BRICKS3.C -------------------------------------------------------------------------------- /src/Chap14/Bricks3/BRICKS3.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/BRICKS3.RC -------------------------------------------------------------------------------- /src/Chap14/Bricks3/Bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/Bricks.bmp -------------------------------------------------------------------------------- /src/Chap14/Bricks3/Bricks3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/Bricks3.mak -------------------------------------------------------------------------------- /src/Chap14/Bricks3/Bricks3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/Bricks3.sln -------------------------------------------------------------------------------- /src/Chap14/Bricks3/Bricks3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/Bricks3.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Bricks3/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Bricks3/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/Bighelp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/Bighelp.bmp -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/Editlabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/Editlabl.bmp -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/Filelabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/Filelabl.bmp -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/Fontlabl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/Fontlabl.bmp -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/GrafMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/GrafMenu.c -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/GrafMenu.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/GrafMenu.mak -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/GrafMenu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/GrafMenu.rc -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/GrafMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/GrafMenu.sln -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/GrafMenu.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/GrafMenu.vcxproj -------------------------------------------------------------------------------- /src/Chap14/GrafMenu/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/GrafMenu/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/HelloBit/HelloBit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/HelloBit.c -------------------------------------------------------------------------------- /src/Chap14/HelloBit/HelloBit.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/HelloBit.mak -------------------------------------------------------------------------------- /src/Chap14/HelloBit/HelloBit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/HelloBit.rc -------------------------------------------------------------------------------- /src/Chap14/HelloBit/HelloBit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/HelloBit.sln -------------------------------------------------------------------------------- /src/Chap14/HelloBit/HelloBit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/HelloBit.vcxproj -------------------------------------------------------------------------------- /src/Chap14/HelloBit/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/HelloBit/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap14/Scramble/Scramble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Scramble/Scramble.c -------------------------------------------------------------------------------- /src/Chap14/Scramble/Scramble.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Scramble/Scramble.mak -------------------------------------------------------------------------------- /src/Chap14/Scramble/Scramble.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Scramble/Scramble.sln -------------------------------------------------------------------------------- /src/Chap14/Scramble/Scramble.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Scramble/Scramble.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Sketch/Sketch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Sketch/Sketch.c -------------------------------------------------------------------------------- /src/Chap14/Sketch/Sketch.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Sketch/Sketch.mak -------------------------------------------------------------------------------- /src/Chap14/Sketch/Sketch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Sketch/Sketch.sln -------------------------------------------------------------------------------- /src/Chap14/Sketch/Sketch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Sketch/Sketch.vcxproj -------------------------------------------------------------------------------- /src/Chap14/Stretch/Stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Stretch/Stretch.c -------------------------------------------------------------------------------- /src/Chap14/Stretch/Stretch.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Stretch/Stretch.mak -------------------------------------------------------------------------------- /src/Chap14/Stretch/Stretch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Stretch/Stretch.sln -------------------------------------------------------------------------------- /src/Chap14/Stretch/Stretch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap14/Stretch/Stretch.vcxproj -------------------------------------------------------------------------------- /src/Chap15/Apollo11/Apollo11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/Apollo11.bmp -------------------------------------------------------------------------------- /src/Chap15/Apollo11/Apollo11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/Apollo11.c -------------------------------------------------------------------------------- /src/Chap15/Apollo11/Apollo11.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/Apollo11.mak -------------------------------------------------------------------------------- /src/Chap15/Apollo11/Apollo11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/Apollo11.sln -------------------------------------------------------------------------------- /src/Chap15/Apollo11/Apollo11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/Apollo11.vcxproj -------------------------------------------------------------------------------- /src/Chap15/Apollo11/ApolloTD.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/ApolloTD.bmp -------------------------------------------------------------------------------- /src/Chap15/Apollo11/DibFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/Apollo11/DibFile.h -------------------------------------------------------------------------------- /src/Chap15/DibConv/DibConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/DibConv.c -------------------------------------------------------------------------------- /src/Chap15/DibConv/DibConv.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/DibConv.mak -------------------------------------------------------------------------------- /src/Chap15/DibConv/DibConv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/DibConv.rc -------------------------------------------------------------------------------- /src/Chap15/DibConv/DibConv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/DibConv.sln -------------------------------------------------------------------------------- /src/Chap15/DibConv/DibConv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/DibConv.vcxproj -------------------------------------------------------------------------------- /src/Chap15/DibConv/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibConv/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/DibHeads/DibHeads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/DibHeads.c -------------------------------------------------------------------------------- /src/Chap15/DibHeads/DibHeads.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/DibHeads.mak -------------------------------------------------------------------------------- /src/Chap15/DibHeads/DibHeads.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/DibHeads.rc -------------------------------------------------------------------------------- /src/Chap15/DibHeads/DibHeads.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/DibHeads.sln -------------------------------------------------------------------------------- /src/Chap15/DibHeads/DibHeads.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/DibHeads.vcxproj -------------------------------------------------------------------------------- /src/Chap15/DibHeads/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibHeads/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/DibSect/DibSect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/DibSect.c -------------------------------------------------------------------------------- /src/Chap15/DibSect/DibSect.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/DibSect.mak -------------------------------------------------------------------------------- /src/Chap15/DibSect/DibSect.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/DibSect.rc -------------------------------------------------------------------------------- /src/Chap15/DibSect/DibSect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/DibSect.sln -------------------------------------------------------------------------------- /src/Chap15/DibSect/DibSect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/DibSect.vcxproj -------------------------------------------------------------------------------- /src/Chap15/DibSect/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/DibSect/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/SeqDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/SeqDisp.c -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/SeqDisp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/SeqDisp.mak -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/SeqDisp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/SeqDisp.rc -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/SeqDisp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/SeqDisp.sln -------------------------------------------------------------------------------- /src/Chap15/SeqDisp/SeqDisp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/SeqDisp/SeqDisp.vcxproj -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/DibFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/DibFile.c -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/DibFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/DibFile.h -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/ShowDib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/ShowDib1.c -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/ShowDib1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/ShowDib1.mak -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/ShowDib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/ShowDib1.rc -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/ShowDib1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/ShowDib1.sln -------------------------------------------------------------------------------- /src/Chap15/ShowDib1/ShowDib1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib1/ShowDib1.vcxproj -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/DibFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/DibFile.c -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/DibFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/DibFile.h -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/ShowDib2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/ShowDib2.mak -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/ShowDib2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/ShowDib2.rc -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/ShowDib2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/ShowDib2.vcxproj -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/Showdib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/Showdib2.c -------------------------------------------------------------------------------- /src/Chap15/ShowDib2/Showdib2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap15/ShowDib2/Showdib2.sln -------------------------------------------------------------------------------- /src/Chap16/AllColor/AllColor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/AllColor/AllColor.c -------------------------------------------------------------------------------- /src/Chap16/AllColor/AllColor.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/AllColor/AllColor.mak -------------------------------------------------------------------------------- /src/Chap16/AllColor/AllColor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/AllColor/AllColor.sln -------------------------------------------------------------------------------- /src/Chap16/AllColor/AllColor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/AllColor/AllColor.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Bounce/Bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Bounce/Bounce.c -------------------------------------------------------------------------------- /src/Chap16/Bounce/Bounce.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Bounce/Bounce.mak -------------------------------------------------------------------------------- /src/Chap16/Bounce/Bounce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Bounce/Bounce.sln -------------------------------------------------------------------------------- /src/Chap16/Bounce/Bounce.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Bounce/Bounce.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Bounce/PalAnim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Bounce/PalAnim.c -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibConv.c -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibConv.h -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibHelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibHelp.c -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibHelp.h -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibPal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibPal.c -------------------------------------------------------------------------------- /src/Chap16/Dibble/DibPal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/DibPal.h -------------------------------------------------------------------------------- /src/Chap16/Dibble/Dibble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/Dibble.c -------------------------------------------------------------------------------- /src/Chap16/Dibble/Dibble.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/Dibble.mak -------------------------------------------------------------------------------- /src/Chap16/Dibble/Dibble.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/Dibble.rc -------------------------------------------------------------------------------- /src/Chap16/Dibble/Dibble.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/Dibble.sln -------------------------------------------------------------------------------- /src/Chap16/Dibble/Dibble.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/Dibble.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Dibble/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Dibble/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/Fader/Fader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Fader/Fader.c -------------------------------------------------------------------------------- /src/Chap16/Fader/Fader.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Fader/Fader.mak -------------------------------------------------------------------------------- /src/Chap16/Fader/Fader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Fader/Fader.sln -------------------------------------------------------------------------------- /src/Chap16/Fader/Fader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Fader/Fader.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Grays1/Grays1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays1/Grays1.c -------------------------------------------------------------------------------- /src/Chap16/Grays1/Grays1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays1/Grays1.mak -------------------------------------------------------------------------------- /src/Chap16/Grays1/Grays1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays1/Grays1.sln -------------------------------------------------------------------------------- /src/Chap16/Grays1/Grays1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays1/Grays1.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Grays2/Grays2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays2/Grays2.c -------------------------------------------------------------------------------- /src/Chap16/Grays2/Grays2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays2/Grays2.mak -------------------------------------------------------------------------------- /src/Chap16/Grays2/Grays2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays2/Grays2.sln -------------------------------------------------------------------------------- /src/Chap16/Grays2/Grays2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays2/Grays2.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Grays3/Grays3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays3/Grays3.c -------------------------------------------------------------------------------- /src/Chap16/Grays3/Grays3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays3/Grays3.mak -------------------------------------------------------------------------------- /src/Chap16/Grays3/Grays3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays3/Grays3.sln -------------------------------------------------------------------------------- /src/Chap16/Grays3/Grays3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Grays3/Grays3.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Pipes/Pipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Pipes/Pipes.c -------------------------------------------------------------------------------- /src/Chap16/Pipes/Pipes.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Pipes/Pipes.mak -------------------------------------------------------------------------------- /src/Chap16/Pipes/Pipes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Pipes/Pipes.sln -------------------------------------------------------------------------------- /src/Chap16/Pipes/Pipes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Pipes/Pipes.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/PackeDib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/PackeDib.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/PackeDib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/PackeDib.h -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/ShowDib3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/ShowDib3.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/ShowDib3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/ShowDib3.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/ShowDib3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/ShowDib3.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/ShowDib3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/ShowDib3.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib3/ShowDib3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib3/ShowDib3.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/ShowDib4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/ShowDib4.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/ShowDib4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/ShowDib4.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/ShowDib4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/ShowDib4.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/ShowDib4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/ShowDib4.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib4/ShowDib4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib4/ShowDib4.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/ShowDib5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/ShowDib5.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/ShowDib5.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/ShowDib5.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/ShowDib5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/ShowDib5.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/ShowDib5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/ShowDib5.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib5/ShowDib5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib5/ShowDib5.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/ShowDib6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/ShowDib6.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/ShowDib6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/ShowDib6.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/ShowDib6.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/ShowDib6.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/ShowDib6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/ShowDib6.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib6/ShowDib6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib6/ShowDib6.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/ShowDib7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/ShowDib7.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/ShowDib7.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/ShowDib7.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/ShowDib7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/ShowDib7.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/ShowDib7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/ShowDib7.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib7/ShowDib7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib7/ShowDib7.vcxproj -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/ShowDib8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/ShowDib8.c -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/ShowDib8.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/ShowDib8.mak -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/ShowDib8.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/ShowDib8.rc -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/ShowDib8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/ShowDib8.sln -------------------------------------------------------------------------------- /src/Chap16/ShowDib8/ShowDib8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/ShowDib8/ShowDib8.vcxproj -------------------------------------------------------------------------------- /src/Chap16/SysPal1/SysPal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal1/SysPal1.c -------------------------------------------------------------------------------- /src/Chap16/SysPal1/SysPal1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal1/SysPal1.mak -------------------------------------------------------------------------------- /src/Chap16/SysPal1/SysPal1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal1/SysPal1.sln -------------------------------------------------------------------------------- /src/Chap16/SysPal1/SysPal1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal1/SysPal1.vcxproj -------------------------------------------------------------------------------- /src/Chap16/SysPal2/SysPal2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal2/SysPal2.c -------------------------------------------------------------------------------- /src/Chap16/SysPal2/SysPal2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal2/SysPal2.mak -------------------------------------------------------------------------------- /src/Chap16/SysPal2/SysPal2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal2/SysPal2.sln -------------------------------------------------------------------------------- /src/Chap16/SysPal2/SysPal2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal2/SysPal2.vcxproj -------------------------------------------------------------------------------- /src/Chap16/SysPal3/SysPal3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal3/SysPal3.c -------------------------------------------------------------------------------- /src/Chap16/SysPal3/SysPal3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal3/SysPal3.mak -------------------------------------------------------------------------------- /src/Chap16/SysPal3/SysPal3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal3/SysPal3.sln -------------------------------------------------------------------------------- /src/Chap16/SysPal3/SysPal3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/SysPal3/SysPal3.vcxproj -------------------------------------------------------------------------------- /src/Chap16/Tunnel/Tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Tunnel/Tunnel.c -------------------------------------------------------------------------------- /src/Chap16/Tunnel/Tunnel.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Tunnel/Tunnel.mak -------------------------------------------------------------------------------- /src/Chap16/Tunnel/Tunnel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Tunnel/Tunnel.sln -------------------------------------------------------------------------------- /src/Chap16/Tunnel/Tunnel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap16/Tunnel/Tunnel.vcxproj -------------------------------------------------------------------------------- /src/Chap17/ChosFont/ChosFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/ChosFont.c -------------------------------------------------------------------------------- /src/Chap17/ChosFont/ChosFont.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/ChosFont.mak -------------------------------------------------------------------------------- /src/Chap17/ChosFont/ChosFont.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/ChosFont.rc -------------------------------------------------------------------------------- /src/Chap17/ChosFont/ChosFont.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/ChosFont.sln -------------------------------------------------------------------------------- /src/Chap17/ChosFont/ChosFont.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/ChosFont.vcxproj -------------------------------------------------------------------------------- /src/Chap17/ChosFont/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/ChosFont/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZFont.c -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZFont.h -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZTest.c -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZTest.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZTest.mak -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZTest.sln -------------------------------------------------------------------------------- /src/Chap17/EZTest/EZTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/EZTest.vcxproj -------------------------------------------------------------------------------- /src/Chap17/EZTest/FontDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/FontDemo.c -------------------------------------------------------------------------------- /src/Chap17/EZTest/FontDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/FontDemo.rc -------------------------------------------------------------------------------- /src/Chap17/EZTest/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EZTest/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/EndJoin/EndJoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EndJoin/EndJoin.c -------------------------------------------------------------------------------- /src/Chap17/EndJoin/EndJoin.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EndJoin/EndJoin.mak -------------------------------------------------------------------------------- /src/Chap17/EndJoin/EndJoin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EndJoin/EndJoin.sln -------------------------------------------------------------------------------- /src/Chap17/EndJoin/EndJoin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/EndJoin/EndJoin.vcxproj -------------------------------------------------------------------------------- /src/Chap17/FontClip/FontClip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontClip/FontClip.c -------------------------------------------------------------------------------- /src/Chap17/FontClip/FontClip.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontClip/FontClip.mak -------------------------------------------------------------------------------- /src/Chap17/FontClip/FontClip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontClip/FontClip.sln -------------------------------------------------------------------------------- /src/Chap17/FontClip/FontClip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontClip/FontClip.vcxproj -------------------------------------------------------------------------------- /src/Chap17/FontFill/FontFill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontFill/FontFill.c -------------------------------------------------------------------------------- /src/Chap17/FontFill/FontFill.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontFill/FontFill.mak -------------------------------------------------------------------------------- /src/Chap17/FontFill/FontFill.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontFill/FontFill.sln -------------------------------------------------------------------------------- /src/Chap17/FontFill/FontFill.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontFill/FontFill.vcxproj -------------------------------------------------------------------------------- /src/Chap17/FontOut1/FontOut1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut1/FontOut1.c -------------------------------------------------------------------------------- /src/Chap17/FontOut1/FontOut1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut1/FontOut1.mak -------------------------------------------------------------------------------- /src/Chap17/FontOut1/FontOut1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut1/FontOut1.sln -------------------------------------------------------------------------------- /src/Chap17/FontOut1/FontOut1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut1/FontOut1.vcxproj -------------------------------------------------------------------------------- /src/Chap17/FontOut2/FontOut2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut2/FontOut2.c -------------------------------------------------------------------------------- /src/Chap17/FontOut2/FontOut2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut2/FontOut2.mak -------------------------------------------------------------------------------- /src/Chap17/FontOut2/FontOut2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut2/FontOut2.sln -------------------------------------------------------------------------------- /src/Chap17/FontOut2/FontOut2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontOut2/FontOut2.vcxproj -------------------------------------------------------------------------------- /src/Chap17/FontRot/FontRot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontRot/FontRot.c -------------------------------------------------------------------------------- /src/Chap17/FontRot/FontRot.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontRot/FontRot.mak -------------------------------------------------------------------------------- /src/Chap17/FontRot/FontRot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontRot/FontRot.sln -------------------------------------------------------------------------------- /src/Chap17/FontRot/FontRot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/FontRot/FontRot.vcxproj -------------------------------------------------------------------------------- /src/Chap17/Justify1/Justify1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/Justify1.c -------------------------------------------------------------------------------- /src/Chap17/Justify1/Justify1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/Justify1.mak -------------------------------------------------------------------------------- /src/Chap17/Justify1/Justify1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/Justify1.rc -------------------------------------------------------------------------------- /src/Chap17/Justify1/Justify1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/Justify1.sln -------------------------------------------------------------------------------- /src/Chap17/Justify1/Justify1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/Justify1.vcxproj -------------------------------------------------------------------------------- /src/Chap17/Justify1/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify1/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/Justify2/Justify2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/Justify2.c -------------------------------------------------------------------------------- /src/Chap17/Justify2/Justify2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/Justify2.mak -------------------------------------------------------------------------------- /src/Chap17/Justify2/Justify2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/Justify2.rc -------------------------------------------------------------------------------- /src/Chap17/Justify2/Justify2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/Justify2.sln -------------------------------------------------------------------------------- /src/Chap17/Justify2/Justify2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/Justify2.vcxproj -------------------------------------------------------------------------------- /src/Chap17/Justify2/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/Justify2/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/PickFont/PickFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/PickFont.c -------------------------------------------------------------------------------- /src/Chap17/PickFont/PickFont.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/PickFont.mak -------------------------------------------------------------------------------- /src/Chap17/PickFont/PickFont.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/PickFont.rc -------------------------------------------------------------------------------- /src/Chap17/PickFont/PickFont.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/PickFont.sln -------------------------------------------------------------------------------- /src/Chap17/PickFont/PickFont.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/PickFont.vcxproj -------------------------------------------------------------------------------- /src/Chap17/PickFont/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/PickFont/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/UniChars/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap17/UniChars/Unichars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/Unichars.c -------------------------------------------------------------------------------- /src/Chap17/UniChars/Unichars.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/Unichars.mak -------------------------------------------------------------------------------- /src/Chap17/UniChars/Unichars.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/Unichars.rc -------------------------------------------------------------------------------- /src/Chap17/UniChars/Unichars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/Unichars.sln -------------------------------------------------------------------------------- /src/Chap17/UniChars/Unichars.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap17/UniChars/Unichars.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf1/Emf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf1/Emf1.c -------------------------------------------------------------------------------- /src/Chap18/Emf1/Emf1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf1/Emf1.mak -------------------------------------------------------------------------------- /src/Chap18/Emf1/Emf1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf1/Emf1.sln -------------------------------------------------------------------------------- /src/Chap18/Emf1/Emf1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf1/Emf1.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf10/Emf10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf10/Emf10.c -------------------------------------------------------------------------------- /src/Chap18/Emf10/Emf10.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf10/Emf10.mak -------------------------------------------------------------------------------- /src/Chap18/Emf10/Emf10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf10/Emf10.sln -------------------------------------------------------------------------------- /src/Chap18/Emf10/Emf10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf10/Emf10.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf11/Emf11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf11/Emf11.c -------------------------------------------------------------------------------- /src/Chap18/Emf11/Emf11.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf11/Emf11.mak -------------------------------------------------------------------------------- /src/Chap18/Emf11/Emf11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf11/Emf11.sln -------------------------------------------------------------------------------- /src/Chap18/Emf11/Emf11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf11/Emf11.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf11/emf11.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf11/emf11.emf -------------------------------------------------------------------------------- /src/Chap18/Emf12/Emf12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf12/Emf12.c -------------------------------------------------------------------------------- /src/Chap18/Emf12/Emf12.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf12/Emf12.mak -------------------------------------------------------------------------------- /src/Chap18/Emf12/Emf12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf12/Emf12.sln -------------------------------------------------------------------------------- /src/Chap18/Emf12/Emf12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf12/Emf12.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf12/emf12.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf12/emf12.emf -------------------------------------------------------------------------------- /src/Chap18/Emf13/Emf13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf13/Emf13.c -------------------------------------------------------------------------------- /src/Chap18/Emf13/Emf13.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf13/Emf13.mak -------------------------------------------------------------------------------- /src/Chap18/Emf13/Emf13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf13/Emf13.sln -------------------------------------------------------------------------------- /src/Chap18/Emf13/Emf13.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf13/Emf13.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf2/Emf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf2/Emf2.c -------------------------------------------------------------------------------- /src/Chap18/Emf2/Emf2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf2/Emf2.mak -------------------------------------------------------------------------------- /src/Chap18/Emf2/Emf2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf2/Emf2.sln -------------------------------------------------------------------------------- /src/Chap18/Emf2/Emf2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf2/Emf2.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf2/emf2.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf2/emf2.emf -------------------------------------------------------------------------------- /src/Chap18/Emf3/Emf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf3/Emf3.c -------------------------------------------------------------------------------- /src/Chap18/Emf3/Emf3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf3/Emf3.mak -------------------------------------------------------------------------------- /src/Chap18/Emf3/Emf3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf3/Emf3.sln -------------------------------------------------------------------------------- /src/Chap18/Emf3/Emf3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf3/Emf3.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf3/emf3.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf3/emf3.emf -------------------------------------------------------------------------------- /src/Chap18/Emf4/Emf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf4/Emf4.c -------------------------------------------------------------------------------- /src/Chap18/Emf4/Emf4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf4/Emf4.mak -------------------------------------------------------------------------------- /src/Chap18/Emf4/Emf4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf4/Emf4.sln -------------------------------------------------------------------------------- /src/Chap18/Emf4/Emf4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf4/Emf4.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf4/emf4.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf4/emf4.emf -------------------------------------------------------------------------------- /src/Chap18/Emf5/Emf5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf5/Emf5.c -------------------------------------------------------------------------------- /src/Chap18/Emf5/Emf5.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf5/Emf5.mak -------------------------------------------------------------------------------- /src/Chap18/Emf5/Emf5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf5/Emf5.sln -------------------------------------------------------------------------------- /src/Chap18/Emf5/Emf5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf5/Emf5.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf6/Emf6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf6/Emf6.c -------------------------------------------------------------------------------- /src/Chap18/Emf6/Emf6.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf6/Emf6.mak -------------------------------------------------------------------------------- /src/Chap18/Emf6/Emf6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf6/Emf6.sln -------------------------------------------------------------------------------- /src/Chap18/Emf6/Emf6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf6/Emf6.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf7/Emf7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf7/Emf7.c -------------------------------------------------------------------------------- /src/Chap18/Emf7/Emf7.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf7/Emf7.mak -------------------------------------------------------------------------------- /src/Chap18/Emf7/Emf7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf7/Emf7.sln -------------------------------------------------------------------------------- /src/Chap18/Emf7/Emf7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf7/Emf7.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf7/emf7.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf7/emf7.emf -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf.aps -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf.c -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf.rc -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf8.c -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf8.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf8.mak -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf8.sln -------------------------------------------------------------------------------- /src/Chap18/Emf8/Emf8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/Emf8.vcxproj -------------------------------------------------------------------------------- /src/Chap18/Emf8/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap18/Emf8/emf8.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf8/emf8.emf -------------------------------------------------------------------------------- /src/Chap18/Emf9/Emf9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf9/Emf9.c -------------------------------------------------------------------------------- /src/Chap18/Emf9/Emf9.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf9/Emf9.mak -------------------------------------------------------------------------------- /src/Chap18/Emf9/Emf9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf9/Emf9.sln -------------------------------------------------------------------------------- /src/Chap18/Emf9/Emf9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Emf9/Emf9.vcxproj -------------------------------------------------------------------------------- /src/Chap18/EmfView/EmfView.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/EmfView.c -------------------------------------------------------------------------------- /src/Chap18/EmfView/EmfView.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/EmfView.mak -------------------------------------------------------------------------------- /src/Chap18/EmfView/EmfView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/EmfView.rc -------------------------------------------------------------------------------- /src/Chap18/EmfView/EmfView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/EmfView.sln -------------------------------------------------------------------------------- /src/Chap18/EmfView/EmfView.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/EmfView.vcxproj -------------------------------------------------------------------------------- /src/Chap18/EmfView/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/EmfView/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap18/Metafile/Metafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Metafile/Metafile.c -------------------------------------------------------------------------------- /src/Chap18/Metafile/Metafile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Metafile/Metafile.mak -------------------------------------------------------------------------------- /src/Chap18/Metafile/Metafile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Metafile/Metafile.sln -------------------------------------------------------------------------------- /src/Chap18/Metafile/Metafile.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap18/Metafile/Metafile.vcxproj -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/MDIDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/MDIDemo.c -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/MDIDemo.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/MDIDemo.mak -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/MDIDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/MDIDemo.rc -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/MDIDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/MDIDemo.sln -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/MDIDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/MDIDemo.vcxproj -------------------------------------------------------------------------------- /src/Chap19/MDIDemo/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap19/MDIDemo/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap20/BigJob1/BigJob1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob1/BigJob1.c -------------------------------------------------------------------------------- /src/Chap20/BigJob1/BigJob1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob1/BigJob1.mak -------------------------------------------------------------------------------- /src/Chap20/BigJob1/BigJob1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob1/BigJob1.sln -------------------------------------------------------------------------------- /src/Chap20/BigJob1/BigJob1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob1/BigJob1.vcxproj -------------------------------------------------------------------------------- /src/Chap20/BigJob2/BigJob2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob2/BigJob2.c -------------------------------------------------------------------------------- /src/Chap20/BigJob2/BigJob2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob2/BigJob2.mak -------------------------------------------------------------------------------- /src/Chap20/BigJob2/BigJob2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob2/BigJob2.sln -------------------------------------------------------------------------------- /src/Chap20/BigJob2/BigJob2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/BigJob2/BigJob2.vcxproj -------------------------------------------------------------------------------- /src/Chap20/Multi1/Multi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi1/Multi1.c -------------------------------------------------------------------------------- /src/Chap20/Multi1/Multi1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi1/Multi1.mak -------------------------------------------------------------------------------- /src/Chap20/Multi1/Multi1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi1/Multi1.sln -------------------------------------------------------------------------------- /src/Chap20/Multi1/Multi1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi1/Multi1.vcxproj -------------------------------------------------------------------------------- /src/Chap20/Multi2/Multi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi2/Multi2.c -------------------------------------------------------------------------------- /src/Chap20/Multi2/Multi2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi2/Multi2.mak -------------------------------------------------------------------------------- /src/Chap20/Multi2/Multi2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi2/Multi2.sln -------------------------------------------------------------------------------- /src/Chap20/Multi2/Multi2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/Multi2/Multi2.vcxproj -------------------------------------------------------------------------------- /src/Chap20/RndRctMT/RndRctMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/RndRctMT/RndRctMT.c -------------------------------------------------------------------------------- /src/Chap20/RndRctMT/RndRctMT.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/RndRctMT/RndRctMT.mak -------------------------------------------------------------------------------- /src/Chap20/RndRctMT/RndRctMT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/RndRctMT/RndRctMT.sln -------------------------------------------------------------------------------- /src/Chap20/RndRctMT/RndRctMT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap20/RndRctMT/RndRctMT.vcxproj -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrLib.c -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrLib.h -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrLib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrLib.mak -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrLib.vcxproj -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrTest.c -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrTest.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrTest.mak -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrTest.sln -------------------------------------------------------------------------------- /src/Chap21/EdrTest/EdrTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/EdrTest/EdrTest.vcxproj -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP1.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP2.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP3.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP3.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP4.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP4.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP5.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP5.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP6.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP6.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP7.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP7.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP8.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP8.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BITMAP9.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BITMAP9.BMP -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BitLib.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BitLib.aps -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BitLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BitLib.c -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BitLib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BitLib.mak -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BitLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BitLib.rc -------------------------------------------------------------------------------- /src/Chap21/ShowBit/BitLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/BitLib.vcxproj -------------------------------------------------------------------------------- /src/Chap21/ShowBit/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap21/ShowBit/ShowBit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/ShowBit.c -------------------------------------------------------------------------------- /src/Chap21/ShowBit/ShowBit.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/ShowBit.mak -------------------------------------------------------------------------------- /src/Chap21/ShowBit/ShowBit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/ShowBit.sln -------------------------------------------------------------------------------- /src/Chap21/ShowBit/ShowBit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/ShowBit/ShowBit.vcxproj -------------------------------------------------------------------------------- /src/Chap21/StrProg/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrLib.c -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrLib.h -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrLib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrLib.mak -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrLib.vcxproj -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrProg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrProg.c -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrProg.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrProg.mak -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrProg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrProg.rc -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrProg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrProg.sln -------------------------------------------------------------------------------- /src/Chap21/StrProg/StrProg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap21/StrProg/StrProg.vcxproj -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.c -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.h -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.mak -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.rc -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.sln -------------------------------------------------------------------------------- /src/Chap22/AddSynth/AddSynth.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/AddSynth.vcxproj -------------------------------------------------------------------------------- /src/Chap22/AddSynth/Clarinet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/Clarinet.wav -------------------------------------------------------------------------------- /src/Chap22/AddSynth/Oboe.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/Oboe.wav -------------------------------------------------------------------------------- /src/Chap22/AddSynth/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap22/AddSynth/Trumpet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/AddSynth/Trumpet.wav -------------------------------------------------------------------------------- /src/Chap22/BachTocc/BachTocc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/BachTocc/BachTocc.c -------------------------------------------------------------------------------- /src/Chap22/BachTocc/BachTocc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/BachTocc/BachTocc.mak -------------------------------------------------------------------------------- /src/Chap22/BachTocc/BachTocc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/BachTocc/BachTocc.sln -------------------------------------------------------------------------------- /src/Chap22/BachTocc/BachTocc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/BachTocc/BachTocc.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Drum/DRUM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/DRUM.ICO -------------------------------------------------------------------------------- /src/Chap22/Drum/Drum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/Drum.c -------------------------------------------------------------------------------- /src/Chap22/Drum/Drum.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/Drum.mak -------------------------------------------------------------------------------- /src/Chap22/Drum/Drum.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/Drum.rc -------------------------------------------------------------------------------- /src/Chap22/Drum/Drum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/Drum.sln -------------------------------------------------------------------------------- /src/Chap22/Drum/Drum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/Drum.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Drum/DrumFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/DrumFile.c -------------------------------------------------------------------------------- /src/Chap22/Drum/DrumFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/DrumFile.h -------------------------------------------------------------------------------- /src/Chap22/Drum/DrumTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/DrumTime.c -------------------------------------------------------------------------------- /src/Chap22/Drum/DrumTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/DrumTime.h -------------------------------------------------------------------------------- /src/Chap22/Drum/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Drum/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap22/KBMidi/KBMidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/KBMidi/KBMidi.c -------------------------------------------------------------------------------- /src/Chap22/KBMidi/KBMidi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/KBMidi/KBMidi.mak -------------------------------------------------------------------------------- /src/Chap22/KBMidi/KBMidi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/KBMidi/KBMidi.sln -------------------------------------------------------------------------------- /src/Chap22/KBMidi/KBMidi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/KBMidi/KBMidi.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Record1/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap22/Record1/Record.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/Record.rc -------------------------------------------------------------------------------- /src/Chap22/Record1/Record1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/Record1.c -------------------------------------------------------------------------------- /src/Chap22/Record1/Record1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/Record1.mak -------------------------------------------------------------------------------- /src/Chap22/Record1/Record1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/Record1.sln -------------------------------------------------------------------------------- /src/Chap22/Record1/Record1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record1/Record1.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Record2/Record2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record2/Record2.c -------------------------------------------------------------------------------- /src/Chap22/Record2/Record2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record2/Record2.mak -------------------------------------------------------------------------------- /src/Chap22/Record2/Record2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record2/Record2.sln -------------------------------------------------------------------------------- /src/Chap22/Record2/Record2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record2/Record2.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Record2/record2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record2/record2.wav -------------------------------------------------------------------------------- /src/Chap22/Record3/Record3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record3/Record3.c -------------------------------------------------------------------------------- /src/Chap22/Record3/Record3.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record3/Record3.mak -------------------------------------------------------------------------------- /src/Chap22/Record3/Record3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record3/Record3.sln -------------------------------------------------------------------------------- /src/Chap22/Record3/Record3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record3/Record3.vcxproj -------------------------------------------------------------------------------- /src/Chap22/Record3/record3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/Record3/record3.wav -------------------------------------------------------------------------------- /src/Chap22/SineWave/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap22/SineWave/SineWave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/SineWave.c -------------------------------------------------------------------------------- /src/Chap22/SineWave/SineWave.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/SineWave.mak -------------------------------------------------------------------------------- /src/Chap22/SineWave/SineWave.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/SineWave.rc -------------------------------------------------------------------------------- /src/Chap22/SineWave/SineWave.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/SineWave.sln -------------------------------------------------------------------------------- /src/Chap22/SineWave/SineWave.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/SineWave/SineWave.vcxproj -------------------------------------------------------------------------------- /src/Chap22/TestMci/RESOURCE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/RESOURCE.H -------------------------------------------------------------------------------- /src/Chap22/TestMci/TestMci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/TestMci.c -------------------------------------------------------------------------------- /src/Chap22/TestMci/TestMci.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/TestMci.mak -------------------------------------------------------------------------------- /src/Chap22/TestMci/TestMci.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/TestMci.rc -------------------------------------------------------------------------------- /src/Chap22/TestMci/TestMci.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/TestMci.sln -------------------------------------------------------------------------------- /src/Chap22/TestMci/TestMci.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/TestMci/TestMci.vcxproj -------------------------------------------------------------------------------- /src/Chap22/WakeUp/WakeUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/WakeUp/WakeUp.c -------------------------------------------------------------------------------- /src/Chap22/WakeUp/WakeUp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/WakeUp/WakeUp.mak -------------------------------------------------------------------------------- /src/Chap22/WakeUp/WakeUp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/WakeUp/WakeUp.sln -------------------------------------------------------------------------------- /src/Chap22/WakeUp/WakeUp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap22/WakeUp/WakeUp.vcxproj -------------------------------------------------------------------------------- /src/Chap23/NetTime/NetTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/NetTime.c -------------------------------------------------------------------------------- /src/Chap23/NetTime/NetTime.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/NetTime.mak -------------------------------------------------------------------------------- /src/Chap23/NetTime/NetTime.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/NetTime.rc -------------------------------------------------------------------------------- /src/Chap23/NetTime/NetTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/NetTime.sln -------------------------------------------------------------------------------- /src/Chap23/NetTime/NetTime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/NetTime.vcxproj -------------------------------------------------------------------------------- /src/Chap23/NetTime/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/NetTime/resource.h -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/UpdDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/UpdDemo.c -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/UpdDemo.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/UpdDemo.mak -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/UpdDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/UpdDemo.rc -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/UpdDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/UpdDemo.sln -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/UpdDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/UpdDemo.vcxproj -------------------------------------------------------------------------------- /src/Chap23/UpdDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/programming-windows-5th-edition/HEAD/src/Chap23/UpdDemo/resource.h --------------------------------------------------------------------------------