├── .gitignore ├── LICENSE ├── README.md └── src ├── CHAPTR01 ├── cpC │ ├── cpC.c │ ├── cpC.vcxproj │ └── cpC.vcxproj.filters ├── cpCF │ ├── cpCF.c │ ├── cpCF.vcxproj │ └── cpCF.vcxproj.filters ├── cpU │ ├── cpU.c │ ├── cpU.vcxproj │ └── cpU.vcxproj.filters ├── cpUC │ ├── cpUC.c │ ├── cpUC.vcxproj │ └── cpUC.vcxproj.filters ├── cpW │ ├── cpW.c │ ├── cpW.vcxproj │ └── cpW.vcxproj.filters └── cpwFA │ ├── cpwFA.c │ ├── cpwFA.vcxproj │ └── cpwFA.vcxproj.filters ├── CHAPTR02 ├── CD │ ├── CD.C │ ├── CD.vcxproj │ └── CD.vcxproj.filters ├── Cat │ ├── Cat.c │ ├── Cat.vcxproj │ └── Cat.vcxproj.filters ├── PWD │ ├── PWD.C │ ├── PWD.vcxproj │ └── PWD.vcxproj.filters ├── PWDA │ ├── PWDA.C │ ├── PWDA.vcxproj │ └── PWDA.vcxproj.filters ├── cci │ ├── cci.C │ ├── cci.vcxproj │ ├── cci.vcxproj.filters │ └── cci_f.C └── cci_fFA │ ├── cci.C │ ├── cci_fFA.C │ ├── cci_fFA.vcxproj │ └── cci_fFA.vcxproj.filters ├── CHAPTR03 ├── FreeSpace │ ├── FreeSpace.c │ ├── FreeSpace.vcxproj │ └── FreeSpace.vcxproj.filters ├── GETN │ ├── GETN.C │ ├── GETN.vcxproj │ └── GETN.vcxproj.filters ├── LsREG │ ├── LsREG.c │ ├── LsREG.vcxproj │ └── LsREG.vcxproj.filters ├── RecordAccess │ ├── RecordAccess.c │ ├── RecordAccess.vcxproj │ └── RecordAccess.vcxproj.filters ├── RecordAccessTestDataGenerate │ ├── RecordAccessTestDataGenerate.cpp │ ├── RecordAccessTestDataGenerate.vcxproj │ └── RecordAccessTestDataGenerate.vcxproj.filters ├── TAIL │ ├── TAIL.C │ ├── TAIL.vcxproj │ └── TAIL.vcxproj.filters ├── TOUCH │ ├── TOUCH.C │ ├── TOUCH.vcxproj │ └── TOUCH.vcxproj.filters ├── TestLock │ ├── TestLock.c │ ├── TestLock.vcxproj │ └── TestLock.vcxproj.filters └── lsW │ ├── lsW.C │ ├── lsW.vcxproj │ └── lsW.vcxproj.filters ├── CHAPTR04 ├── CNTRLC │ ├── CNTRLC.C │ ├── CNTRLC.vcxproj │ └── CNTRLC.vcxproj.filters ├── EXCPTION │ ├── EXCPTION.C │ ├── EXCPTION.vcxproj │ └── EXCPTION.vcxproj.filters ├── toupper │ ├── toupper.c │ ├── toupper.vcxproj │ └── toupper.vcxproj.filters └── toupperX │ ├── toupperX.c │ ├── toupperX.vcxproj │ └── toupperX.vcxproj.filters ├── CHAPTR05 ├── CLEAR │ ├── CLEAR.C │ ├── CLEAR.vcxproj │ └── CLEAR.vcxproj.filters ├── HEAPNOSR │ ├── HEAPNOSR.C │ ├── HEAPNOSR.vcxproj │ └── HEAPNOSR.vcxproj.filters ├── RANDFILE │ ├── RANDFILE.C │ ├── RANDFILE.vcxproj │ └── RANDFILE.vcxproj.filters ├── RecordAccessMM │ ├── RecordAccessMM.c │ ├── RecordAccessMM.vcxproj │ └── RecordAccessMM.vcxproj.filters ├── SORTBT │ ├── SORTBT.C │ ├── SORTBT.vcxproj │ └── SORTBT.vcxproj.filters ├── SORTBTSR │ ├── SORTBTSR.C │ ├── SORTBTSR.vcxproj │ └── SORTBTSR.vcxproj.filters ├── SORTFL │ ├── SORTFL.C │ ├── SORTFL.vcxproj │ └── SORTFL.vcxproj.filters ├── SORTHP │ ├── SORTHP.C │ ├── SORTHP.vcxproj │ └── SORTHP.vcxproj.filters ├── SORTMM │ ├── SORTMM.C │ ├── SORTMM.vcxproj │ └── SORTMM.vcxproj.filters ├── cciEL │ ├── cciEL.C │ ├── cciEL.vcxproj │ └── cciEL.vcxproj.filters ├── cci_fDll │ ├── cci_fDll.c │ ├── cci_fDll.vcxproj │ └── cci_fDll.vcxproj.filters ├── cci_fMMDll │ ├── cci_fMMDll.vcxproj │ ├── cci_fMMDll.vcxproj.filters │ └── cci_fmmDll.c └── cci_fmm.c ├── CHAPTR06 ├── CATHA │ ├── CATHA.C │ ├── CATHA.vcxproj │ └── CATHA.vcxproj.filters ├── GREP │ ├── GREP.C │ ├── GREP.vcxproj │ └── GREP.vcxproj.filters ├── GREPMP │ ├── GREPMP.C │ ├── GREPMP.vcxproj │ └── GREPMP.vcxproj.filters ├── JOBMGT.C ├── JobObjectShell │ ├── JOBMGT.C │ ├── JobObjectShell.c │ ├── JobObjectShell.vcxproj │ └── JobObjectShell.vcxproj.filters ├── JobShell │ ├── JOBMGT.C │ ├── JobShell.c │ ├── JobShell.vcxproj │ └── JobShell.vcxproj.filters ├── TIMEP │ ├── TIMEP.C │ ├── TIMEP.vcxproj │ └── TIMEP.vcxproj.filters └── version │ ├── version.c │ ├── version.vcxproj │ └── version.vcxproj.filters ├── CHAPTR07 ├── grepMT │ ├── grepMT.c │ ├── grepMT.vcxproj │ └── grepMT.vcxproj.filters ├── grepMTx │ ├── grepMTx.c │ ├── grepMTx.vcxproj │ └── grepMTx.vcxproj.filters ├── sortMT │ ├── sortMT.c │ ├── sortMT.vcxproj │ └── sortMT.vcxproj.filters ├── sortMTx │ ├── sortMTx.c │ ├── sortMTx.vcxproj │ └── sortMTx.vcxproj.filters ├── wcMT │ ├── wcMT.c │ ├── wcMT.vcxproj │ └── wcMT.vcxproj.filters ├── wcMTMM │ ├── wcMTMM.c │ ├── wcMTMM.vcxproj │ └── wcMTMM.vcxproj.filters ├── wcMTx │ ├── wcMTx.c │ ├── wcMTx.vcxproj │ └── wcMTx.vcxproj.filters ├── wcMTxx │ ├── wcMTxx.c │ ├── wcMTxx.vcxproj │ └── wcMTxx.vcxproj.filters └── wcST │ ├── wcST.c │ ├── wcST.vcxproj │ └── wcST.vcxproj.filters ├── CHAPTR08 ├── eventPC │ ├── eventPC.c │ ├── eventPC.vcxproj │ └── eventPC.vcxproj.filters ├── eventPCx │ ├── eventPCx.c │ ├── eventPCx.vcxproj │ └── eventPCx.vcxproj.filters ├── simplePC │ ├── simplePC.c │ ├── simplePC.vcxproj │ └── simplePC.vcxproj.filters └── simplePCx │ ├── simplePCx.c │ ├── simplePCx.vcxproj │ └── simplePCx.vcxproj.filters ├── CHAPTR09 ├── TimeMutualExclusion │ ├── TimeMutualExclusion.c │ ├── TimeMutualExclusion.vcxproj │ └── TimeMutualExclusion.vcxproj.filters ├── TimeMutualExclusionSC │ ├── TimeMutualExclusionSC.c │ ├── TimeMutualExclusionSC.vcxproj │ └── TimeMutualExclusionSC.vcxproj.filters ├── statsCS │ ├── statsCS.c │ ├── statsCS.vcxproj │ └── statsCS.vcxproj.filters ├── statsIN │ ├── statsIN.c │ ├── statsIN.vcxproj │ └── statsIN.vcxproj.filters ├── statsMX │ ├── statsMX.c │ ├── statsMX.vcxproj │ └── statsMX.vcxproj.filters ├── statsMX_ST │ ├── statsMX_ST.c │ ├── statsMX_ST.vcxproj │ └── statsMX_ST.vcxproj.filters ├── statsNS │ ├── statsNS.c │ ├── statsNS.vcxproj │ └── statsNS.vcxproj.filters ├── statsNS_old │ ├── statsNS_old.c │ ├── statsNS_old.vcxproj │ └── statsNS_old.vcxproj.filters ├── statsSRW │ ├── statsSRW.c │ ├── statsSRW.vcxproj │ └── statsSRW.vcxproj.filters ├── statsSRW_VTP │ ├── statsSRW_VTP.c │ ├── statsSRW_VTP.vcxproj │ └── statsSRW_VTP.vcxproj.filters └── wcMT_VTP │ ├── wcMT_VTP.c │ ├── wcMT_VTP.vcxproj │ └── wcMT_VTP.vcxproj.filters ├── CHAPTR10 ├── Messages.c ├── MultiSem.c ├── MultiSemX.c ├── QueueObj.c ├── QueueObjCS.c ├── QueueObjCS_Sig.c ├── QueueObjCV.c ├── QueueObjCancel.c ├── QueueObjSig_noSOAW.c ├── QueueObjX.c ├── QueueObj_Sig.c ├── QueueObj_noSOAW.c ├── SynchObj.c ├── TestMultiSem.c ├── ThbObject.c ├── ThbObjectX.c ├── ThreeStage.c ├── ThreeStageCS.c ├── ThreeStageCancel.c ├── ThreeStagePthreads │ ├── Messages.c │ ├── QueueObj.c │ ├── ReadMe.txt │ ├── ThreeStage.c │ ├── messages.h │ ├── pthread.h │ ├── pthreadVC2.dll │ ├── pthreadVC2.lib │ ├── sched.h │ └── synchobj.h ├── multiPCav.c ├── pcstats.c └── testTHB.c ├── CHAPTR11 ├── Redirect │ ├── Redirect.c │ ├── Redirect.vcxproj │ └── Redirect.vcxproj.filters ├── SRVRBCST │ ├── SRVRBCST.C │ ├── SRVRBCST.vcxproj │ └── SRVRBCST.vcxproj.filters ├── WC │ ├── WC.C │ ├── WC.vcxproj │ └── WC.vcxproj.filters ├── clientNP │ ├── LOCSRVER.C │ ├── clientNP.C │ ├── clientNP.vcxproj │ └── clientNP.vcxproj.filters └── serverNP │ ├── serverNP.C │ ├── serverNP.vcxproj │ └── serverNP.vcxproj.filters ├── CHAPTR12 ├── SendReceiveSKHA_DLL │ ├── SendReceiveSKHA.c │ ├── SendReceiveSKHA_DLL.vcxproj │ └── SendReceiveSKHA_DLL.vcxproj.filters ├── clientSK │ ├── clientSK.c │ ├── clientSK.vcxproj │ └── clientSK.vcxproj.filters ├── clientSKST │ ├── clientSKST.c │ ├── clientSKST.vcxproj │ └── clientSKST.vcxproj.filters ├── clientSKST_DLL │ ├── SendReceiveSKST.c │ ├── clientSKST_DLL.vcxproj │ └── clientSKST_DLL.vcxproj.filters ├── command.c ├── serverSK │ ├── serverSK.c │ ├── serverSK.vcxproj │ └── serverSK.vcxproj.filters ├── serverSKHA.c └── serverSKST.c ├── CHAPTR13 ├── ServiceShell.c ├── SimpleService.C └── serviceSK.C ├── CHAPTR14 ├── TimeBEEP.C ├── TimeBEEP_TPT.c ├── cciEX.C ├── cciMT.c ├── cciMTMM.c ├── cciMT_VTP.c ├── cciOV.C ├── compMP.c ├── geonames.c └── serverNPCP.C ├── CHAPTR15 ├── InitUnFp.c ├── JOBMGT_secure.C ├── JobShell_secure.c ├── LSFP.C ├── chmodBSD.C ├── chmodW.C └── serverNP_secure.C ├── INCLUDE ├── ClientServer.h ├── DataMgmt.h ├── EXCLUDE.H ├── Environment.h ├── Everything.h ├── JobManagement.h ├── SynchObjCS.h ├── Synchronize.h ├── messages.h ├── pcstats.h ├── pthread.h ├── support.h ├── synchobj.h ├── thread_emulation.h └── utility.h ├── Miscellaneous ├── TimeTest │ ├── CPC.EXE │ ├── CPW.EXE │ ├── SynchStats.bat │ ├── ThreeStage.exe │ ├── ThreeStageCS.exe │ ├── ThreeStageCS_Sig.exe │ ├── ThreeStageSOAW.exe │ ├── ThreeStageSOAW_Sig.exe │ ├── ThreeStage_Sig.exe │ ├── Threest.bat │ ├── Utility_4_0.dll │ ├── Utility_4_0.exp │ ├── Utility_4_0.lib │ ├── Utility_4_0.pdb │ ├── atou.exe │ ├── atouEL.exe │ ├── atouEX.exe │ ├── atouLB.exe │ ├── atouLBSS.exe │ ├── atouLSFP.exe │ ├── atouMM.exe │ ├── atouMT.exe │ ├── atouOV.exe │ ├── atouSS.exe │ ├── atouTIME.bat │ ├── atoutime95.bat │ ├── clear.exe │ ├── cpCF.exe │ ├── cpTIME.bat │ ├── cpUC.exe │ ├── cpwFA.exe │ ├── grep.exe │ ├── grepMP.exe │ ├── grepMT.exe │ ├── grepSQ.BAT │ ├── grepTIME.BAT │ ├── randfile.exe │ ├── sortBT.exe │ ├── sortBTSR.exe │ ├── sortFL.exe │ ├── sortHP.exe │ ├── sortMM.exe │ ├── sortMT.exe │ ├── sortTIME.BAT │ ├── statsCS.exe │ ├── statsIN.exe │ ├── statsMX.exe │ ├── statsNS.exe │ ├── statsSRW.exe │ ├── statsSRW_VTP.exe │ ├── timep.exe │ ├── version.exe │ └── view_text.php.htm └── msg_emulation │ ├── Lib │ └── msg_emulation_dll.lib │ ├── Run │ ├── msg_emulation_dll.dll │ └── msg_emulation_test.exe │ ├── errors.h │ ├── msg_emulation.c │ ├── msg_emulation.h │ ├── msg_emulation_dll │ ├── msg_emulation_dll.dsp │ ├── msg_emulation_dll.dsw │ └── msg_emulation_dll.opt │ ├── msg_emulation_dll7 │ ├── msg_emulation_dll.dsp │ ├── msg_emulation_dll.dsw │ ├── msg_emulation_dll.opt │ ├── msg_emulation_dll.sln │ └── msg_emulation_dll.vcproj │ ├── msg_emulation_internal.h │ ├── msg_emulation_test.c │ ├── msg_emulation_test │ ├── msg_emulation_test.dsp │ ├── msg_emulation_test.dsw │ └── msg_emulation_test.opt │ ├── msg_emulation_test7 │ ├── msg_emulation_test.dsp │ ├── msg_emulation_test.dsw │ ├── msg_emulation_test.opt │ ├── msg_emulation_test.sln │ └── msg_emulation_test.vcproj │ ├── pthread.h │ ├── readme.txt │ ├── run7 │ ├── msg_emulation_dll.dll │ └── msg_emulation_test.exe │ ├── thread_emulation.h │ └── utility.h ├── Projects2005 ├── Excption │ ├── Excption.sln │ └── Excption.vcproj ├── FreeSpace │ ├── FreeSpace.sln │ └── FreeSpace.vcproj ├── JobShell │ ├── JobShell.sln │ └── JobShell.vcproj ├── RecordAccess │ ├── RecordAccess.sln │ └── RecordAccess.vcproj ├── RecordAccessMM │ ├── RecordAccessMM.sln │ └── RecordAccessMM.vcproj ├── RecordAccessTestDataGenerate │ ├── RecordAccessTestDataGenerate.sln │ └── RecordAccessTestDataGenerate.vcproj ├── Redirect │ ├── redirect.sln │ └── redirect.vcproj ├── SendReceiveSKHA │ ├── SendReceiveSKHA.sln │ └── SendReceiveSKHA.vcproj ├── SendReceiveSKST_DLL │ ├── SendReceiveSKST_DLL.sln │ └── SendReceiveSKST_DLL.vcproj ├── ServiceShell │ ├── ServiceShell.sln │ └── ServiceShell.vcproj ├── SimpleService │ ├── SimpleService.sln │ └── SimpleService.vcproj ├── SrvrBcst │ ├── SrvrBcst.sln │ └── SrvrBcst.vcproj ├── TestLock │ ├── TestLock.sln │ └── TestLock.vcproj ├── ThreeStage │ ├── ThreeStage.sln │ └── ThreeStage.vcproj ├── ThreeStageCS │ ├── ThreeStageCS.sln │ └── ThreeStageCS.vcproj ├── ThreeStageCS_Sig │ ├── ThreeStageCS_Sig.sln │ └── ThreeStageCS_Sig.vcproj ├── ThreeStageCancel │ ├── ThreeStageCancel.sln │ └── ThreeStageCancel.vcproj ├── ThreeStagePthreads │ ├── ThreeStagePthreads.sln │ └── ThreeStagePthreads.vcproj ├── ThreeStageSig_noSOAW │ ├── ThreeStageSig_noSOAW.sln │ └── ThreeStageSig_noSOAW.vcproj ├── ThreeStage_Sig │ ├── ThreeStage_Sig.sln │ └── ThreeStage_Sig.vcproj ├── ThreeStage_noSOAW │ ├── ThreeStage_noSOAW.sln │ └── ThreeStage_noSOAW.vcproj ├── TimeBeep │ ├── TimeBeep.sln │ └── TimeBeep.vcproj ├── Utility_4_0 │ ├── Utility_4_0.sln │ └── Utility_4_0.vcproj ├── Version │ ├── Version.sln │ └── Version.vcproj ├── cat │ ├── cat.sln │ ├── cat.suo │ └── cat.vcproj ├── catUni │ ├── catUni.sln │ └── catUni.vcproj ├── cci │ ├── cci.sln │ └── cci.vcproj ├── cciEL │ ├── cciEL.sln │ └── cciEL.vcproj ├── cciEX │ ├── cciEX.sln │ └── cciEX.vcproj ├── cciLBSS │ ├── cciLBSS.sln │ └── cciLBSS.vcproj ├── cciMM │ ├── cciMM.sln │ └── cciMM.vcproj ├── cciMT │ ├── cciMT.sln │ └── cciMT.vcproj ├── cciMTMM │ ├── cciMTMM.sln │ └── cciMTMM.vcproj ├── cciOV │ ├── cciOV.sln │ └── cciOV.vcproj ├── cci_fDll │ ├── cci_fDll.sln │ └── cci_fDll.vcproj ├── cci_fMMDll │ ├── cci_fMMDll.sln │ └── cci_fMMDll.vcproj ├── chmodW │ ├── chmodW.sln │ └── chmodW.vcproj ├── clear │ ├── clear.sln │ └── clear.vcproj ├── clientNP │ ├── clientNP.sln │ └── clientNP.vcproj ├── clientSK │ ├── clientSK.sln │ └── clientSK.vcproj ├── clientSKST │ ├── clientSKST.sln │ └── clientSKST.vcproj ├── commandsIP │ ├── commandsIP.sln │ └── commandsIP.vcproj ├── cpC │ ├── cpC.sln │ └── cpC.vcproj ├── cpCF │ ├── cpCF.sln │ └── cpCF.vcproj ├── cpUC │ ├── cpUC.sln │ └── cpUC.vcproj ├── cpW │ ├── cpW.sln │ └── cpW.vcproj ├── cpWFA │ ├── cpWFA.sln │ └── cpWFA.vcproj ├── ctrlc │ ├── ctrlc.sln │ └── ctrlc.vcproj ├── eventPC │ ├── eventPC.sln │ └── eventPC.vcproj ├── getn │ ├── getn.sln │ └── getn.vcproj ├── grep │ ├── grep.sln │ └── grep.vcproj ├── grepMP │ ├── grepMP.sln │ └── grepMP.vcproj ├── grepMT │ ├── grepMT.sln │ └── grepMT.vcproj ├── lsFP │ ├── lsFP.sln │ └── lsFP.vcproj ├── lsReg │ ├── lsReg.sln │ └── lsReg.vcproj ├── lsW │ ├── lsW.sln │ └── lsW.vcproj ├── mulitSem │ ├── mulitSem.sln │ └── mulitSem.vcproj ├── multiPCav │ ├── multiPCav.sln │ └── multiPCav.vcproj ├── pcstatsDLL │ ├── pcstatsDLL.sln │ └── pcstatsDLL.vcproj ├── pwd │ ├── pwd.sln │ └── pwd.vcproj ├── pwdA │ ├── pwdA.sln │ └── pwdA.vcproj ├── randfile │ ├── randfile.sln │ └── randfile.vcproj ├── semaphore │ ├── semaphore.sln │ └── semaphore.vcproj ├── serverNP_secure │ ├── serverNP_secure.sln │ └── serverNP_secure.vcproj ├── serverSK │ ├── serverSK.sln │ └── serverSK.vcproj ├── serverSKHA │ ├── serverSKHA.sln │ └── serverSKHA.vcproj ├── serverSKST │ ├── serverSKST.sln │ └── serverSKST.vcproj ├── serviceSK │ ├── serviceSK.sln │ └── serviceSK.vcproj ├── simplePC │ ├── simplePC.sln │ └── simplePC.vcproj ├── sortBT │ ├── sortBT.sln │ └── sortBT.vcproj ├── sortBTSR │ ├── sortBTSR.sln │ └── sortBTSR.vcproj ├── sortFL │ ├── sortFL.sln │ └── sortFL.vcproj ├── sortHP │ ├── sortHP.sln │ └── sortHP.vcproj ├── sortMM │ ├── sortMM.sln │ └── sortMM.vcproj ├── sortMT │ ├── sortMT.sln │ └── sortMT.vcproj ├── statsCS │ ├── statsCS.sln │ └── statsCS.vcproj ├── statsIN │ ├── statsIN.sln │ └── statsIN.vcproj ├── statsMX │ ├── statsMX.sln │ └── statsMX.vcproj ├── statsMX_ST │ ├── statsMX_ST.sln │ └── statsMX_ST.vcproj ├── statsNS │ ├── statsNS.sln │ └── statsNS.vcproj ├── tail │ ├── tail.sln │ └── tail.vcproj ├── testTHB │ ├── testTHB.sln │ └── testTHB.vcproj ├── timep │ ├── timep.sln │ └── timep.vcproj ├── touch │ ├── touch.sln │ └── touch.vcproj ├── toupper │ ├── toupper.sln │ └── toupper.vcproj ├── wcMT │ ├── wcMT.sln │ └── wcMT.vcproj └── wcMTMM │ ├── wcMTMM.sln │ └── wcMTMM.vcproj ├── Projects2008 ├── Excption │ ├── Excption.sln │ ├── Excption.suo │ └── Excption.vcproj ├── FreeSpace │ ├── FreeSpace.sln │ ├── FreeSpace.suo │ └── FreeSpace.vcproj ├── JobObjectShell │ ├── JobObjectShell.sln │ ├── JobObjectShell.suo │ └── JobObjectShell.vcproj ├── JobShell │ ├── JobShell.sln │ ├── JobShell.suo │ └── JobShell.vcproj ├── RecordAccess │ ├── RecordAccess.sln │ ├── RecordAccess.suo │ └── RecordAccess.vcproj ├── RecordAccessMM │ ├── RecordAccessMM.sln │ ├── RecordAccessMM.suo │ └── RecordAccessMM.vcproj ├── RecordAccessTestDataGenerate │ ├── RecordAccessTestDataGenerate.sln │ ├── RecordAccessTestDataGenerate.suo │ └── RecordAccessTestDataGenerate.vcproj ├── Redirect │ ├── Redirect.sln │ ├── Redirect.suo │ └── Redirect.vcproj ├── SendReceiveSKHA │ ├── SendReceiveSKHA.sln │ ├── SendReceiveSKHA.suo │ └── SendReceiveSKHA.vcproj ├── SendReceiveSKST_DLL │ ├── SendReceiveSKST_DLL.sln │ ├── SendReceiveSKST_DLL.suo │ └── SendReceiveSKST_DLL.vcproj ├── ServiceShell │ ├── ServiceShell.sln │ ├── ServiceShell.suo │ └── ServiceShell.vcproj ├── SimpleService │ ├── SimpleService.sln │ ├── SimpleService.suo │ └── SimpleService.vcproj ├── SrvrBcst │ ├── SrvrBcst.sln │ ├── SrvrBcst.suo │ └── SrvrBcst.vcproj ├── TestLock │ ├── TestLock.sln │ ├── TestLock.suo │ └── TestLock.vcproj ├── ThreeStage │ ├── ThreeStage.sln │ ├── ThreeStage.suo │ └── ThreeStage.vcproj ├── ThreeStageCS │ ├── ThreeStageCS.sln │ ├── ThreeStageCS.suo │ └── ThreeStageCS.vcproj ├── ThreeStageCS_Sig │ ├── ThreeStageCS_Sig.sln │ ├── ThreeStageCS_Sig.suo │ └── ThreeStageCS_Sig.vcproj ├── ThreeStageCV │ ├── ThreeStage.sln │ ├── ThreeStage.suo │ └── ThreeStage.vcproj ├── ThreeStageCancel │ ├── ThreeStageCancel.sln │ ├── ThreeStageCancel.suo │ └── ThreeStageCancel.vcproj ├── ThreeStagePthreads │ ├── ThreeStagePthreads.sln │ ├── ThreeStagePthreads.suo │ └── ThreeStagePthreads.vcproj ├── ThreeStageSig_noSOAW │ ├── ThreeStageSig_noSOAW.sln │ ├── ThreeStageSig_noSOAW.suo │ └── ThreeStageSig_noSOAW.vcproj ├── ThreeStage_Sig │ ├── ThreeStage_Sig.sln │ ├── ThreeStage_Sig.suo │ └── ThreeStage_Sig.vcproj ├── ThreeStage_noSOAW │ ├── ThreeStage_noSOAW.sln │ ├── ThreeStage_noSOAW.suo │ └── ThreeStage_noSOAW.vcproj ├── TimeBeep │ ├── TimeBeep.sln │ ├── TimeBeep.suo │ └── TimeBeep.vcproj ├── TimedMutualExclusion │ ├── TimedMutualExclusion.sln │ ├── TimedMutualExclusion.suo │ └── TimedMutualExclusion.vcproj ├── TimedMutualExclusionSC │ ├── TimedMutualExclusionSC.sln │ ├── TimedMutualExclusionSC.suo │ └── TimedMutualExclusionSC.vcproj ├── Utility_4_0 │ ├── Utility_4_0.sln │ ├── Utility_4_0.suo │ └── Utility_4_0.vcproj ├── Version │ ├── Version.sln │ ├── Version.suo │ └── Version.vcproj ├── cat │ ├── cat.sln │ ├── cat.suo │ ├── cat.suo.old │ └── cat.vcproj ├── catUni │ ├── catUni.sln │ ├── catUni.suo │ └── catUni.vcproj ├── cci │ ├── cci.sln │ ├── cci.suo │ └── cci.vcproj ├── cciEL │ ├── cciEL.sln │ ├── cciEL.suo │ └── cciEL.vcproj ├── cciEX │ ├── cciEX.sln │ ├── cciEX.suo │ └── cciEX.vcproj ├── cciLBSS │ ├── cciLBSS.sln │ ├── cciLBSS.suo │ └── cciLBSS.vcproj ├── cciMM │ ├── cciMM.sln │ ├── cciMM.suo │ └── cciMM.vcproj ├── cciMT │ ├── cciMT.sln │ ├── cciMT.suo │ └── cciMT.vcproj ├── cciMTMM │ ├── cciMTMM.sln │ ├── cciMTMM.suo │ └── cciMTMM.vcproj ├── cciMT_VTP │ ├── cciMT_VTP.sln │ ├── cciMT_VTP.suo │ └── cciMT_VTP.vcproj ├── cciOV │ ├── cciOV.sln │ ├── cciOV.suo │ └── cciOV.vcproj ├── cci_fDll │ ├── cci_fDll.sln │ ├── cci_fDll.suo │ └── cci_fDll.vcproj ├── cci_fMMDll │ ├── cci_fMMDll.sln │ ├── cci_fMMDll.suo │ └── cci_fMMDll.vcproj ├── chmodW │ ├── chmodW.sln │ ├── chmodW.suo │ └── chmodW.vcproj ├── clear │ ├── clear.sln │ ├── clear.suo │ └── clear.vcproj ├── clientNP │ ├── clientNP.sln │ ├── clientNP.suo │ └── clientNP.vcproj ├── clientSK │ ├── clientSK.sln │ ├── clientSK.suo │ └── clientSK.vcproj ├── clientSKST │ ├── clientSKST.sln │ ├── clientSKST.suo │ └── clientSKST.vcproj ├── commandsIP │ ├── commandsIP.sln │ ├── commandsIP.suo │ └── commandsIP.vcproj ├── compMP │ ├── compMP.sln │ ├── compMP.suo │ └── compMP.vcproj ├── cpC │ ├── cpC.sln │ ├── cpC.suo │ └── cpC.vcproj ├── cpCF │ ├── cpCF.sln │ ├── cpCF.suo │ └── cpCF.vcproj ├── cpUC │ ├── cpUC.sln │ ├── cpUC.suo │ └── cpUC.vcproj ├── cpW │ ├── cpW.sln │ ├── cpW.suo │ └── cpW.vcproj ├── cpWFA │ ├── cpWFA.sln │ ├── cpWFA.suo │ └── cpWFA.vcproj ├── ctrlc │ ├── ctrlc.sln │ ├── ctrlc.suo │ └── ctrlc.vcproj ├── eventPC │ ├── eventPC.sln │ ├── eventPC.suo │ └── eventPC.vcproj ├── geonames │ ├── geonames.sln │ ├── geonames.suo │ └── geonames.vcproj ├── getn │ ├── getn.sln │ ├── getn.suo │ └── getn.vcproj ├── grep │ ├── grep.sln │ ├── grep.suo │ └── grep.vcproj ├── grepMP │ ├── grepMP.sln │ ├── grepMP.suo │ └── grepMP.vcproj ├── grepMT │ ├── grepMT.sln │ ├── grepMT.suo │ └── grepMT.vcproj ├── lsFP │ ├── lsFP.sln │ ├── lsFP.suo │ └── lsFP.vcproj ├── lsReg │ ├── lsReg.sln │ ├── lsReg.suo │ └── lsReg.vcproj ├── lsW │ ├── lsW.sln │ ├── lsW.suo │ └── lsW.vcproj ├── mulitSem │ ├── mulitSem.sln │ ├── mulitSem.suo │ └── mulitSem.vcproj ├── multiPCav │ ├── multiPCav.sln │ ├── multiPCav.suo │ └── multiPCav.vcproj ├── pcstatsDLL │ ├── pcstatsDLL.sln │ ├── pcstatsDLL.suo │ └── pcstatsDLL.vcproj ├── pwd │ ├── pwd.sln │ ├── pwd.suo │ └── pwd.vcproj ├── pwdA │ ├── pwdA.sln │ ├── pwdA.suo │ └── pwdA.vcproj ├── randfile │ ├── randfile.sln │ ├── randfile.suo │ └── randfile.vcproj ├── semaphore │ ├── semaphore.sln │ ├── semaphore.suo │ └── semaphore.vcproj ├── serverCP │ ├── serverCP.sln │ ├── serverCP.suo │ └── serverCP.vcproj ├── serverNP │ ├── serverNP.sln │ ├── serverNP.suo │ └── serverNP.vcproj ├── serverNP_secure │ ├── serverNP_secure.sln │ ├── serverNP_secure.suo │ └── serverNP_secure.vcproj ├── serverSK │ ├── serverSK.sln │ ├── serverSK.suo │ └── serverSK.vcproj ├── serverSKHA │ ├── serverSKHA.sln │ ├── serverSKHA.suo │ └── serverSKHA.vcproj ├── serverSKST │ ├── serverSKST.sln │ ├── serverSKST.suo │ └── serverSKST.vcproj ├── serviceSK │ ├── serviceSK.sln │ ├── serviceSK.suo │ └── serviceSK.vcproj ├── simplePC │ ├── simplePC.sln │ ├── simplePC.suo │ └── simplePC.vcproj ├── sortBT │ ├── sortBT.sln │ ├── sortBT.suo │ └── sortBT.vcproj ├── sortBTSR │ ├── sortBTSR.sln │ ├── sortBTSR.suo │ └── sortBTSR.vcproj ├── sortFL │ ├── sortFL.sln │ ├── sortFL.suo │ └── sortFL.vcproj ├── sortHP │ ├── sortHP.sln │ ├── sortHP.suo │ └── sortHP.vcproj ├── sortMM │ ├── sortMM.sln │ ├── sortMM.suo │ └── sortMM.vcproj ├── sortMT │ ├── sortMT.sln │ ├── sortMT.suo │ └── sortMT.vcproj ├── statsCS │ ├── statsCS.sln │ ├── statsCS.suo │ └── statsCS.vcproj ├── statsIN │ ├── statsIN.sln │ ├── statsIN.suo │ └── statsIN.vcproj ├── statsMX │ ├── statsMX.sln │ ├── statsMX.suo │ └── statsMX.vcproj ├── statsMX_ST │ ├── statsMX_ST.sln │ ├── statsMX_ST.suo │ └── statsMX_ST.vcproj ├── statsNS │ ├── statsNS.sln │ ├── statsNS.suo │ └── statsNS.vcproj ├── statsSRW │ ├── statsSRW.sln │ ├── statsSRW.suo │ └── statsSRW.vcproj ├── statsSRW_VTP │ ├── statsSRW_VTP.sln │ ├── statsSRW_VTP.suo │ └── statsSRW_VTP.vcproj ├── tail │ ├── tail.sln │ ├── tail.suo │ └── tail.vcproj ├── testTHB │ ├── testTHB.sln │ ├── testTHB.suo │ └── testTHB.vcproj ├── timep │ ├── timep.sln │ ├── timep.suo │ └── timep.vcproj ├── touch │ ├── touch.sln │ ├── touch.suo │ └── touch.vcproj ├── toupper │ ├── toupper.sln │ ├── toupper.suo │ └── toupper.vcproj ├── wcMT │ ├── wcMT.sln │ ├── wcMT.suo │ └── wcMT.vcproj ├── wcMTMM │ ├── wcMTMM.sln │ ├── wcMTMM.suo │ └── wcMTMM.vcproj └── wcMT_VTP │ ├── wcMT_VTP.sln │ ├── wcMT_VTP.suo │ └── wcMT_VTP.vcproj ├── Projects2008_64 ├── Excption │ ├── Excption.sln │ ├── Excption.suo │ └── Excption.vcproj ├── FreeSpace │ ├── FreeSpace.sln │ ├── FreeSpace.suo │ └── FreeSpace.vcproj ├── JobObjectShell │ ├── JobObjectShell.sln │ ├── JobObjectShell.suo │ └── JobObjectShell.vcproj ├── JobShell │ ├── JobShell.sln │ ├── JobShell.suo │ └── JobShell.vcproj ├── RecordAccess │ ├── RecordAccess.sln │ ├── RecordAccess.suo │ └── RecordAccess.vcproj ├── RecordAccessMM │ ├── RecordAccessMM.sln │ ├── RecordAccessMM.suo │ └── RecordAccessMM.vcproj ├── RecordAccessTestDataGenerate │ ├── RecordAccessTestDataGenerate.sln │ ├── RecordAccessTestDataGenerate.suo │ └── RecordAccessTestDataGenerate.vcproj ├── Redirect │ ├── Redirect.sln │ ├── Redirect.suo │ └── Redirect.vcproj ├── SendReceiveSKHA │ ├── SendReceiveSKHA.sln │ ├── SendReceiveSKHA.suo │ └── SendReceiveSKHA.vcproj ├── SendReceiveSKST_DLL │ ├── SendReceiveSKST_DLL.sln │ ├── SendReceiveSKST_DLL.suo │ └── SendReceiveSKST_DLL.vcproj ├── ServiceShell │ ├── ServiceShell.sln │ ├── ServiceShell.suo │ └── ServiceShell.vcproj ├── SimpleService │ ├── SimpleService.sln │ ├── SimpleService.suo │ └── SimpleService.vcproj ├── SrvrBcst │ ├── SrvrBcst.sln │ ├── SrvrBcst.suo │ └── SrvrBcst.vcproj ├── TestLock │ ├── TestLock.sln │ ├── TestLock.suo │ └── TestLock.vcproj ├── ThreeStage │ ├── ThreeStage.sln │ ├── ThreeStage.suo │ └── ThreeStage.vcproj ├── ThreeStageCS │ ├── ThreeStageCS.sln │ ├── ThreeStageCS.suo │ └── ThreeStageCS.vcproj ├── ThreeStageCS_Sig │ ├── ThreeStageCS_Sig.sln │ ├── ThreeStageCS_Sig.suo │ └── ThreeStageCS_Sig.vcproj ├── ThreeStageCV │ ├── ThreeStage.sln │ ├── ThreeStage.suo │ └── ThreeStage.vcproj ├── ThreeStageCancel │ ├── ThreeStageCancel.sln │ ├── ThreeStageCancel.suo │ └── ThreeStageCancel.vcproj ├── ThreeStageSig_noSOAW │ ├── ThreeStageSig_noSOAW.sln │ ├── ThreeStageSig_noSOAW.suo │ └── ThreeStageSig_noSOAW.vcproj ├── ThreeStage_Sig │ ├── ThreeStage_Sig.sln │ ├── ThreeStage_Sig.suo │ └── ThreeStage_Sig.vcproj ├── ThreeStage_noSOAW │ ├── ThreeStage_noSOAW.sln │ ├── ThreeStage_noSOAW.suo │ └── ThreeStage_noSOAW.vcproj ├── TimeBeep │ ├── TimeBeep.sln │ ├── TimeBeep.suo │ └── TimeBeep.vcproj ├── TimedMutualExclusion │ ├── TimedMutualExclusion.sln │ ├── TimedMutualExclusion.suo │ └── TimedMutualExclusion.vcproj ├── TimedMutualExclusionSC │ ├── TimedMutualExclusionSC.sln │ ├── TimedMutualExclusionSC.suo │ └── TimedMutualExclusionSC.vcproj ├── Utility_4_0 │ ├── Utility_4_0.sln │ └── Utility_4_0.suo ├── Version │ ├── Version.sln │ ├── Version.suo │ └── Version.vcproj ├── cat │ ├── cat.sln │ ├── cat.suo │ └── cat.vcproj ├── catUni │ ├── catUni.sln │ ├── catUni.suo │ └── catUni.vcproj ├── cci │ ├── cci.sln │ ├── cci.suo │ ├── cci.suo.old │ ├── cci.vcproj │ ├── cci.vcxproj │ └── cci.vcxproj.filters ├── cciEL │ ├── cciEL.sln │ ├── cciEL.suo │ └── cciEL.vcproj ├── cciEX │ ├── cciEX.sln │ ├── cciEX.suo │ ├── cciEX.suo.old │ └── cciEX.vcproj ├── cciLBSS │ ├── cciLBSS.sln │ ├── cciLBSS.suo │ └── cciLBSS.vcproj ├── cciMM │ ├── cciMM.sln │ ├── cciMM.suo │ └── cciMM.vcproj ├── cciMT │ ├── cciMT.sln │ ├── cciMT.suo │ └── cciMT.vcproj ├── cciMTMM │ ├── cciMTMM.sln │ ├── cciMTMM.suo │ └── cciMTMM.vcproj ├── cciMT_VTP │ ├── cciMT_VTP.sln │ ├── cciMT_VTP.suo │ └── cciMT_VTP.vcproj ├── cciOV │ ├── cciOV.sln │ ├── cciOV.suo │ └── cciOV.vcproj ├── cci_fDll │ ├── cci_fDll.sln │ ├── cci_fDll.suo │ └── cci_fDll.vcproj ├── cci_fMMDll │ ├── cci_fMMDll.sln │ ├── cci_fMMDll.suo │ └── cci_fMMDll.vcproj ├── chmodW │ ├── chmodW.sln │ ├── chmodW.suo │ └── chmodW.vcproj ├── clear │ ├── clear.sln │ ├── clear.suo │ └── clear.vcproj ├── clientNP │ ├── clientNP.sln │ ├── clientNP.suo │ └── clientNP.vcproj ├── clientSK │ ├── clientSK.sln │ ├── clientSK.suo │ └── clientSK.vcproj ├── clientSKST │ ├── clientSKST.sln │ ├── clientSKST.suo │ └── clientSKST.vcproj ├── commandsIP │ ├── commandsIP.sln │ ├── commandsIP.suo │ └── commandsIP.vcproj ├── compMP │ ├── compMP.sln │ ├── compMP.suo │ └── compMP.vcproj ├── cpC │ ├── cpC.sln │ ├── cpC.suo │ └── cpC.vcproj ├── cpCF │ ├── cpCF.sln │ ├── cpCF.suo │ └── cpCF.vcproj ├── cpUC │ ├── cpUC.sln │ ├── cpUC.suo │ └── cpUC.vcproj ├── cpW │ ├── cpW.sln │ ├── cpW.suo │ └── cpW.vcproj ├── cpWFA │ ├── cpWFA.sln │ ├── cpWFA.suo │ └── cpWFA.vcproj ├── ctrlc │ ├── ctrlc.sln │ ├── ctrlc.suo │ └── ctrlc.vcproj ├── eventPC │ ├── eventPC.sln │ ├── eventPC.suo │ └── eventPC.vcproj ├── geonames │ ├── geonames.sln │ ├── geonames.suo │ └── geonames.vcproj ├── getn │ ├── getn.sln │ ├── getn.suo │ └── getn.vcproj ├── grep │ ├── grep.sln │ ├── grep.suo │ └── grep.vcproj ├── grepMP │ ├── grepMP.sln │ ├── grepMP.suo │ └── grepMP.vcproj ├── grepMT │ ├── grepMT.sln │ ├── grepMT.suo │ └── grepMT.vcproj ├── lsFP │ ├── lsFP.sln │ ├── lsFP.suo │ └── lsFP.vcproj ├── lsReg │ ├── lsReg.sln │ ├── lsReg.suo │ └── lsReg.vcproj ├── lsW │ ├── lsW.sln │ ├── lsW.suo │ └── lsW.vcproj ├── mulitSem │ ├── mulitSem.sln │ ├── mulitSem.suo │ └── mulitSem.vcproj ├── multiPCav │ ├── multiPCav.sln │ ├── multiPCav.suo │ └── multiPCav.vcproj ├── pcstatsDLL │ ├── pcstatsDLL.sln │ ├── pcstatsDLL.suo │ └── pcstatsDLL.vcproj ├── pwd │ ├── pwd.sln │ ├── pwd.suo │ └── pwd.vcproj ├── pwdA │ ├── pwdA.sln │ ├── pwdA.suo │ └── pwdA.vcproj ├── randfile │ ├── randfile.sln │ ├── randfile.suo │ └── randfile.vcproj ├── semaphore │ ├── semaphore.sln │ ├── semaphore.suo │ └── semaphore.vcproj ├── serverCP │ ├── serverCP.sln │ ├── serverCP.suo │ └── serverCP.vcproj ├── serverNP │ ├── serverNP.sln │ ├── serverNP.suo │ └── serverNP.vcproj ├── serverNP_secure │ ├── serverNP_secure.sln │ ├── serverNP_secure.suo │ └── serverNP_secure.vcproj ├── serverSK │ ├── serverSK.sln │ ├── serverSK.suo │ └── serverSK.vcproj ├── serverSKHA │ ├── serverSKHA.sln │ ├── serverSKHA.suo │ └── serverSKHA.vcproj ├── serverSKST │ ├── serverSKST.sln │ ├── serverSKST.suo │ └── serverSKST.vcproj ├── serviceSK │ ├── serviceSK.sln │ ├── serviceSK.suo │ └── serviceSK.vcproj ├── simplePC │ ├── simplePC.sln │ ├── simplePC.suo │ └── simplePC.vcproj ├── sortBT │ ├── sortBT.sln │ ├── sortBT.suo │ └── sortBT.vcproj ├── sortBTSR │ ├── sortBTSR.sln │ ├── sortBTSR.suo │ └── sortBTSR.vcproj ├── sortFL │ ├── sortFL.sln │ ├── sortFL.suo │ └── sortFL.vcproj ├── sortHP │ ├── sortHP.sln │ ├── sortHP.suo │ └── sortHP.vcproj ├── sortMM │ ├── sortMM.sln │ ├── sortMM.suo │ └── sortMM.vcproj ├── sortMT │ ├── sortMT.sln │ ├── sortMT.suo │ └── sortMT.vcproj ├── statsCS │ ├── statsCS.sln │ ├── statsCS.suo │ └── statsCS.vcproj ├── statsIN │ ├── statsIN.sln │ ├── statsIN.suo │ └── statsIN.vcproj ├── statsMX │ ├── statsMX.sln │ ├── statsMX.suo │ └── statsMX.vcproj ├── statsMX_ST │ ├── statsMX_ST.sln │ ├── statsMX_ST.suo │ └── statsMX_ST.vcproj ├── statsNS │ ├── statsNS.sln │ ├── statsNS.suo │ └── statsNS.vcproj ├── statsSRW │ ├── statsSRW.sln │ ├── statsSRW.suo │ └── statsSRW.vcproj ├── statsSRW_VTP │ ├── statsSRW_VTP.sln │ ├── statsSRW_VTP.suo │ └── statsSRW_VTP.vcproj ├── tail │ ├── tail.sln │ ├── tail.suo │ └── tail.vcproj ├── testTHB │ ├── testTHB.sln │ ├── testTHB.suo │ └── testTHB.vcproj ├── timep │ ├── timep.sln │ ├── timep.suo │ └── timep.vcproj ├── touch │ ├── touch.sln │ ├── touch.suo │ └── touch.vcproj ├── toupper │ ├── toupper.sln │ ├── toupper.suo │ └── toupper.vcproj ├── wcMT │ ├── wcMT.sln │ ├── wcMT.suo │ └── wcMT.vcproj ├── wcMTMM │ ├── wcMTMM.sln │ ├── wcMTMM.suo │ └── wcMTMM.vcproj └── wcMT_VTP │ ├── wcMT_VTP.sln │ ├── wcMT_VTP.suo │ └── wcMT_VTP.vcproj ├── ReadMe.txt ├── UTILITY ├── GETARGS.C ├── OPTIONS.C ├── PRINTMSG.C ├── REPRTERR.C ├── SKIPARG.C ├── VersionOK.c └── WSTRINGS.C ├── lib ├── Asc2UnDll.lib ├── SendReceiveSKHA.lib ├── SendReceiveSKHA_64.lib ├── SendReceiveSKST_DLL.lib ├── SendReceiveSKST_DLL_64.lib ├── UtilityStatic.lib ├── UtilityUnicode.lib ├── Utility_4_0.exp ├── Utility_4_0.lib ├── Utility_4_0_64.lib └── pthreadVC2.lib ├── run5 ├── Excption.exe ├── FreeSpace.exe ├── JobShell.exe ├── Monarchs.txt ├── MultiSem.exe ├── Presidents.txt ├── RecordAccess.exe ├── RecordAccessMM.exe ├── RecordAccessTIME.bat ├── RecordAccessTestDataGenerate.exe ├── SendReceiveSKHA.DLL ├── SendReceiveSKST_DLL.dll ├── ServiceShell.exe ├── SimpleService.exe ├── SrvrBcst.exe ├── SynchStatsTIME.bat ├── TestLock.exe ├── ThreeStage.exe ├── ThreeStageCS.exe ├── ThreeStageCS_Sig.exe ├── ThreeStageCancel.exe ├── ThreeStageSig_noSOAW.exe ├── ThreeStageTIME.bat ├── ThreeStage_Sig.exe ├── ThreeStage_noSOAW.exe ├── TimeBeep.exe ├── TimedMutualExclusionSC.exe ├── Utility_4_0.dll ├── alltestsTIME.sh ├── cat.exe ├── catUNI.exe ├── cci.exe ├── cciEL.exe ├── cciEX.exe ├── cciLBSS.exe ├── cciMM.exe ├── cciMT.exe ├── cciMTMM.exe ├── cciOV.exe ├── cci_fDll.dll ├── cci_fMMDll.dll ├── chmodW.exe ├── clear.exe ├── clientNP.exe ├── clientSK.exe ├── clientSKST.exe ├── commandsIP.dll ├── cpC.exe ├── cpCF.exe ├── cpTIME.bat ├── cpUC.exe ├── cpW.exe ├── cpWFA.exe ├── ctrlc.exe ├── eventPC.exe ├── getn.exe ├── grep.exe ├── grepMP.exe ├── grepMT.exe ├── lsFP.exe ├── lsReg.exe ├── lsW.exe ├── msvcr70.dll ├── pcstatsDLL.dll ├── pwd.exe ├── pwdA.exe ├── randfile.exe ├── redirect.exe ├── semaphore.exe ├── serverNP_secure.exe ├── serverSK.exe ├── serverSKHA.exe ├── serverSKST.exe ├── serverSM.exe ├── serviceSK.exe ├── simplePC.exe ├── sortBT.exe ├── sortBTSR.exe ├── sortFL.exe ├── sortHP.exe ├── sortMM.exe ├── sortMT.exe ├── statsCS.exe ├── statsIN.exe ├── statsMX.exe ├── statsMX_ST.exe ├── statsNS.exe ├── statsSRW_VTP.exe ├── tail.exe ├── testTHB.exe ├── timep.exe ├── touch.exe ├── toupper.exe ├── version.exe ├── wcMT.exe ├── wcMTMM.exe └── wcMT_VTP.exe ├── run8 ├── Excption.exe ├── FreeSpace.exe ├── JobObjectShell.exe ├── JobShell.exe ├── Monarchs.TXT ├── MultiSem.exe ├── Presidents.TXT ├── RecordAccess.exe ├── RecordAccessMM.exe ├── RecordAccessTIME.bat ├── RecordAccessTestDataGenerate.exe ├── Redirect.exe ├── SendReceiveSKHA.DLL ├── SendReceiveSKST_DLL.dll ├── ServiceShell.exe ├── SimpleService.exe ├── SrvrBcst.exe ├── SynchStatsTIME.bat ├── TestLock.exe ├── ThreeStage.exe ├── ThreeStageCS.exe ├── ThreeStageCS_Sig.exe ├── ThreeStageCV.exe ├── ThreeStageCancel.exe ├── ThreeStageSig_noSOAW.exe ├── ThreeStageTIME.bat ├── ThreeStage_Sig.exe ├── ThreeStage_noSOAW.exe ├── TimeBeep.exe ├── TimedMutualExclusion.exe ├── TimedMutualExclusionSC.exe ├── Utility_4_0.dll ├── Utility_4_0.exp ├── Utility_4_0.lib ├── alltestsTIME.sh ├── cat.exe ├── catUNI.exe ├── cci.exe ├── cciEL.exe ├── cciEX.exe ├── cciLBSS.exe ├── cciMM.exe ├── cciMT.exe ├── cciMTMM.exe ├── cciMT_VTP.exe ├── cciOV.exe ├── cciTIME.bat ├── cci_fDll.dll ├── cci_fDll.exp ├── cci_fDll.lib ├── cci_fMMDll.dll ├── chmodW.exe ├── clear.exe ├── clientNP.exe ├── clientSK.exe ├── clientSKST.exe ├── commandsIP.dll ├── compMP.exe ├── cpC.exe ├── cpCF.exe ├── cpTIME.bat ├── cpUC.exe ├── cpW.exe ├── cpWFA.exe ├── ctrlc.exe ├── eventPC.exe ├── geonames.exe ├── getn.exe ├── grep.exe ├── grepMP.exe ├── grepMT.exe ├── lsFP.exe ├── lsReg.exe ├── lsW.exe ├── msvcr70.dll ├── pcstatsDLL.dll ├── pwd.exe ├── pwdA.exe ├── randfile.exe ├── semaphore.exe ├── serverCP.exe ├── serverNP.exe ├── serverNP_secure.exe ├── serverSK.exe ├── serverSKHA.exe ├── serverSKST.exe ├── serviceSK.exe ├── simplePC.exe ├── sortBT.exe ├── sortBTSR.exe ├── sortFL.exe ├── sortHP.exe ├── sortMM.exe ├── sortMT.exe ├── statsCS.exe ├── statsIN.exe ├── statsMX.exe ├── statsMX_ST.exe ├── statsNS.exe ├── statsSRW.exe ├── statsSRW_VTP.exe ├── tail.exe ├── testTHB.exe ├── timep.exe ├── touch.exe ├── toupper.exe ├── version.exe ├── wcMT.exe ├── wcMTMM.exe └── wcMT_VTP.exe ├── run8_64 ├── Excption.exe ├── FreeSpace.exe ├── JobObjectShell.exe ├── JobShell.exe ├── Monarchs.txt ├── MultiSem.exe ├── Presidents.txt ├── RecordAccess.exe ├── RecordAccessMM.exe ├── RecordAccessTIME.bat ├── RecordAccessTestDataGenerate.exe ├── Redirect.exe ├── SendReceiveSKHA.DLL ├── SendReceiveSKST_DLL.dll ├── ServiceShell.exe ├── SimpleService.exe ├── SrvrBcst.exe ├── SynchStatsTIME.bat ├── TestLock.exe ├── ThreeStage.exe ├── ThreeStageCS.exe ├── ThreeStageCS_Sig.exe ├── ThreeStageCV.exe ├── ThreeStageCancel.exe ├── ThreeStageSig_noSOAW.exe ├── ThreeStageTIME.bat ├── ThreeStage_Sig.exe ├── ThreeStage_noSOAW.exe ├── TimeBeep.exe ├── TimedMutualExclusion.exe ├── TimedMutualExclusionSC.exe ├── Utility_4_0_64.dll ├── Utility_4_0_64.exp ├── Utility_4_0_64.lib ├── alltestsTIME.sh ├── cat.exe ├── catUNI.exe ├── cci.exe ├── cciEL.exe ├── cciEX.exe ├── cciLBSS.exe ├── cciMM.exe ├── cciMT.exe ├── cciMTMM.exe ├── cciMT_VTP.exe ├── cciOV.exe ├── cci_fDll.dll ├── cci_fDll.exp ├── cci_fDll.lib ├── cci_fMMDll.dll ├── chmodW.exe ├── clear.exe ├── clientNP.exe ├── clientSK.exe ├── clientSKST.exe ├── commandsIP.dll ├── compMP.exe ├── cpC.exe ├── cpCF.exe ├── cpTIME.bat ├── cpUC.exe ├── cpW.exe ├── cpWFA.exe ├── ctrlc.exe ├── eventPC.exe ├── geonames.exe ├── getn.exe ├── grep.exe ├── grepMP.exe ├── grepMT.exe ├── lsFP.exe ├── lsReg.exe ├── lsW.exe ├── msvcr70.dll ├── pcstatsDLL.dll ├── pwd.exe ├── pwdA.exe ├── randfile.exe ├── semaphore.exe ├── serverCP.exe ├── serverNP.exe ├── serverNP_secure.exe ├── serverSK.exe ├── serverSKHA.exe ├── serverSKST.exe ├── serviceSK.exe ├── simplePC.exe ├── sortBT.exe ├── sortBTSR.exe ├── sortFL.exe ├── sortHP.exe ├── sortMM.exe ├── sortMT.exe ├── statsCS.exe ├── statsIN.exe ├── statsMX.exe ├── statsMX_ST.exe ├── statsNS.exe ├── statsSRW.exe ├── statsSRW_VTP.exe ├── tail.exe ├── testTHB.exe ├── timep.exe ├── touch.exe ├── toupper.exe ├── version.exe ├── wcMT.exe ├── wcMTMM.exe └── wcMT_VTP.exe └── windows-system-programming.sln /src/CHAPTR01/cpCF/cpCF.c: -------------------------------------------------------------------------------- 1 | /* Chapter 1. Basic cp file copy program. 2 | Windows Implementation using CopyFile for convenience and possible performance. */ 3 | /* cp file1 file2: Copy file1 to file2. */ 4 | 5 | #include 6 | #include 7 | #define BUF_SIZE 256 8 | 9 | int main (int argc, LPTSTR argv []) 10 | { 11 | if (argc != 3) { 12 | fprintf (stderr, "Usage: cp file1 file2\n"); 13 | return 1; 14 | } 15 | if (!CopyFile (argv[1], argv[2], FALSE)) { 16 | fprintf (stderr, "CopyFile Error: %x\n", GetLastError ()); 17 | return 2; 18 | } 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /src/CHAPTR02/CD/CD.C: -------------------------------------------------------------------------------- 1 | /* Chapter 3. cd. */ 2 | /* cd [directory]: Similar to the UNIX command. */ 3 | /* This program illustrates: 4 | 1. Win32 SetCurrentDirectory 5 | 2. How each drive has its own working directory */ 6 | 7 | #include "Everything.h" 8 | #pragma comment(lib, "Utility_4_0_64.lib") 9 | 10 | #define DIRNAME_LEN MAX_PATH + 2 11 | 12 | int main (int argc, LPTSTR argv []) 13 | { 14 | if (!SetCurrentDirectory (argv [1])) 15 | ReportError (_T ("SetCurrentDirectory error."), 1, TRUE); 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /src/CHAPTR02/PWD/PWD.C: -------------------------------------------------------------------------------- 1 | /* Chapter 2. pwd. */ 2 | /* pwd: Print the current directory. */ 3 | /* This program illustrates: 4 | 1. Windows GetCurrentDirectory 5 | 2. Testing the length of a returned string */ 6 | 7 | #include "Everything.h" 8 | #pragma comment(lib, "Utility_4_0_64.lib") 9 | 10 | #define DIRNAME_LEN (MAX_PATH + 2) 11 | 12 | int _tmain (int argc, LPTSTR argv []) 13 | { 14 | /* Buffer to receive current directory allows for the CR, 15 | LF at the end of the longest possible path. */ 16 | 17 | TCHAR pwdBuffer [DIRNAME_LEN]; 18 | DWORD lenCurDir; 19 | lenCurDir = GetCurrentDirectory (DIRNAME_LEN, pwdBuffer); 20 | if (lenCurDir == 0) 21 | ReportError (_T ("Failure getting pathname."), 1, TRUE); 22 | if (lenCurDir > DIRNAME_LEN) 23 | ReportError (_T ("Pathname is too long."), 2, FALSE); 24 | 25 | PrintMsg (GetStdHandle (STD_OUTPUT_HANDLE), pwdBuffer); 26 | return 0; 27 | } 28 | -------------------------------------------------------------------------------- /src/CHAPTR03/LsREG/LsREG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/CHAPTR03/LsREG/LsREG.c -------------------------------------------------------------------------------- /src/CHAPTR10/ThreeStagePthreads/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This is the original version of ThreeStage, built to run using pthreads under 2 | UNIX. It has been run on several systems. 3 | 4 | Suggestion: Try building and running with the Open Source pthreads Win32 library 5 | mentioned in the text (You'll find it at the Red Hat web site). 6 | 7 | The associated project is: 8 | 9 | WindowsSmpEd3\Projects6\ThreeStagePthreads 10 | 11 | You can easily convert the project to Visual Studio 2005 or Visual Studio 7 12 | -- Just use the Visual Studio's conversion feature. 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/CHAPTR10/ThreeStagePthreads/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/CHAPTR10/ThreeStagePthreads/pthreadVC2.dll -------------------------------------------------------------------------------- /src/CHAPTR10/ThreeStagePthreads/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/CHAPTR10/ThreeStagePthreads/pthreadVC2.lib -------------------------------------------------------------------------------- /src/INCLUDE/Everything.h: -------------------------------------------------------------------------------- 1 | #ifndef _NOEXCLUSIONS 2 | #include "Exclude.h" /* Define Preprocessor variables to */ 3 | /* exclude un-wanted header files. */ 4 | #endif 5 | #include "Environment.h" 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include "support.h" 14 | #ifdef _MT 15 | #include 16 | #endif 17 | /* DWORD_PTR (pointer precision unsigned integer) is used for integers 18 | * that are converted to handles or pointers 19 | * This eliminates Win64 warnings regarding conversion between 20 | * 32 and 64-bit data, as HANDLEs and pointers are 64 bits in 21 | * Win64 (See Chapter 16). This is enable only if _Wp64 is defined. 22 | */ 23 | #if !defined(_Wp64) 24 | #define DWORD_PTR DWORD 25 | #define LONG_PTR LONG 26 | #define INT_PTR INT 27 | #endif 28 | -------------------------------------------------------------------------------- /src/INCLUDE/JobManagement.h: -------------------------------------------------------------------------------- 1 | /* JobManagement.h - Definitions required for job management. */ 2 | 3 | /* Job management exit code for killed jobs. */ 4 | 5 | #define JM_EXIT_CODE 0x1000 6 | #define MAX_JOBS_ALLOWED 10000 7 | typedef struct _JM_JOB 8 | { 9 | DWORD ProcessId; 10 | TCHAR CommandLine [MAX_PATH]; 11 | } JM_JOB; 12 | 13 | #define SJM_JOB sizeof (JM_JOB) 14 | 15 | /* Job management functions. */ 16 | 17 | LONG GetJobNumber (PROCESS_INFORMATION *, LPCTSTR); 18 | BOOL DisplayJobs (void); 19 | DWORD FindProcessId (DWORD); 20 | BOOL GetJobMgtFileName (LPTSTR); 21 | 22 | -------------------------------------------------------------------------------- /src/INCLUDE/thread_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/INCLUDE/thread_emulation.h -------------------------------------------------------------------------------- /src/INCLUDE/utility.h: -------------------------------------------------------------------------------- 1 | #ifndef __utility_h 2 | #define __utility_h 3 | /* PROJECT VERSION */ 4 | 5 | /* 6 | * Define a macro that delays for an amount of time proportional 7 | * to the integer parameter. The delay is a CPU delay and does not 8 | * voluntarily yield the processor. This simulates computation. 9 | */ 10 | 11 | #define delay_cpu(n) {\ 12 | int i=0, j=0;\ 13 | /* Do some wasteful computations that will not be optimized to nothing */\ 14 | while (i < n) {\ 15 | j = i*i + (float)(2*j)/(float)(i+1);\ 16 | i++;\ 17 | }\ 18 | } 19 | #endif 20 | 21 | -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/CPC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/CPC.EXE -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/CPW.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/CPW.EXE -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStage.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStageCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStageCS.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStageCS_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStageCS_Sig.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStageSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStageSOAW.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStageSOAW_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStageSOAW_Sig.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/ThreeStage_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/ThreeStage_Sig.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/Utility_4_0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/Utility_4_0.dll -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/Utility_4_0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/Utility_4_0.exp -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/Utility_4_0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/Utility_4_0.lib -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/Utility_4_0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/Utility_4_0.pdb -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atou.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atou.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouEL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouEL.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouEX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouEX.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouLB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouLB.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouLBSS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouLBSS.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouLSFP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouLSFP.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouMM.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouMT.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouOV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouOV.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/atouSS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/atouSS.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/clear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/clear.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/cpCF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/cpCF.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/cpTIME.bat: -------------------------------------------------------------------------------- 1 | version >> cptime.txt 2 | echo Copy 25.6 MB file >> cptime.txt 3 | timep RandFile 400000 big.txt >> cptime.txt 4 | CLEAR 5 | echo cpc >> cptime.txt 6 | timep cpc big.txt big.u >> cptime.txt 7 | del big.u>> cptime.txt 8 | CLEAR>> cptime.txt 9 | echo cpw>> cptime.txt 10 | timep cpw big.txt big.u>> cptime.txt 11 | del big.u>> cptime.txt 12 | CLEAR>> cptime.txt 13 | echo cpwFA Y-BigBuf Y-SeqScan N-FileSize>> cptime.txt 14 | timep cpwFA big.txt big.u>> cptime.txt 15 | del big.u>> cptime.txt 16 | CLEAR>> cptime.txt 17 | echo cpCF>> cptime.txt 18 | timep cpCF big.txt big.u>> cptime.txt 19 | del big.u>> cptime.txt 20 | CLEAR>> cptime.txt 21 | echo cpUC>> cptime.txt 22 | timep cpUC big.txt big.u>> cptime.txt 23 | del big.u>> cptime.txt 24 | del big.txt>> cptime.txt 25 | echo ======================================== >> cptime.txt 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/cpUC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/cpUC.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/cpwFA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/cpwFA.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/grep.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/grepMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/grepMP.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/grepMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/grepMT.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/grepSQ.BAT: -------------------------------------------------------------------------------- 1 | grep 01234567 g1.s 2 | grep 01234567 g2.s 3 | grep 01234567 g3.s 4 | grep 01234567 g4.s 5 | grep 01234567 g5.s 6 | grep 01234567 g6.s 7 | grep 01234567 g7.s 8 | grep 01234567 g8.s 9 | grep 01234567 g9.s 10 | grep 01234567 g10.s 11 | grep 01234567 g11.s 12 | grep 01234567 g12.s 13 | grep 01234567 g13.s 14 | grep 01234567 g14.s 15 | grep 01234567 g15.s 16 | grep 01234567 g16.s 17 | grep 01234567 g17.s 18 | grep 01234567 g18.s 19 | grep 01234567 g19.s 20 | grep 01234567 g20.s 21 | -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/randfile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/randfile.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortBT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortBT.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortBTSR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortBTSR.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortFL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortFL.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortHP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortHP.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortMM.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/sortMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/sortMT.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsCS.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsIN.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsMX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsMX.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsNS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsNS.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsSRW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsSRW.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/statsSRW_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/statsSRW_VTP.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/timep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/timep.exe -------------------------------------------------------------------------------- /src/Miscellaneous/TimeTest/version.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/TimeTest/version.exe -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/Lib/msg_emulation_dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/Lib/msg_emulation_dll.lib -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/Run/msg_emulation_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/Run/msg_emulation_dll.dll -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/Run/msg_emulation_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/Run/msg_emulation_test.exe -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_dll/msg_emulation_dll.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "msg_emulation_dll"=.\msg_emulation_dll.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_dll/msg_emulation_dll.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/msg_emulation_dll/msg_emulation_dll.opt -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_dll7/msg_emulation_dll.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "msg_emulation_dll"=.\msg_emulation_dll.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_dll7/msg_emulation_dll.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/msg_emulation_dll7/msg_emulation_dll.opt -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_test/msg_emulation_test.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "msg_emulation_test"=.\msg_emulation_test.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_test/msg_emulation_test.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/msg_emulation_test/msg_emulation_test.opt -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_test7/msg_emulation_test.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "msg_emulation_test"=.\msg_emulation_test.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/msg_emulation_test7/msg_emulation_test.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/msg_emulation_test7/msg_emulation_test.opt -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/run7/msg_emulation_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/run7/msg_emulation_dll.dll -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/run7/msg_emulation_test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/run7/msg_emulation_test.exe -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/thread_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Miscellaneous/msg_emulation/thread_emulation.h -------------------------------------------------------------------------------- /src/Miscellaneous/msg_emulation/utility.h: -------------------------------------------------------------------------------- 1 | #ifndef __utility_h 2 | #define __utility_h 3 | 4 | /* 5 | * Define a macro that delays for an amount of time proportional 6 | * to the integer parameter. The delay is a CPU delay and does not 7 | * voluntarily yield the processor. This simulates computation. 8 | */ 9 | 10 | #define delay_cpu(n) {\ 11 | int i=0, j=0;\ 12 | /* Do some wasteful computations that will not be optimized to nothing */\ 13 | while (i < n) {\ 14 | j = (long)(i*i + (float)(2*j)/(float)(i+1));\ 15 | i++;\ 16 | }\ 17 | } 18 | #endif 19 | 20 | -------------------------------------------------------------------------------- /src/Projects2005/cat/cat.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cat", "cat.vcproj", "{F44A9001-A1B5-46AE-885C-3D9E440FAAEA}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Debug|Win32.Build.0 = Debug|Win32 13 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Release|Win32.ActiveCfg = Release|Win32 14 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2005/cat/cat.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2005/cat/cat.suo -------------------------------------------------------------------------------- /src/Projects2005/lsW/lsW.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 9.00 2 | # Visual Studio 2005 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsW", "lsW.vcproj", "{41982719-8F5D-4A1C-99E7-876B938BAA31}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Debug|Win32.Build.0 = Debug|Win32 13 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Release|Win32.ActiveCfg = Release|Win32 14 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2005/timep/timep.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 9.00 2 | # Visual Studio 2005 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "timep", "timep.vcproj", "{0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Debug|Win32.Build.0 = Debug|Win32 13 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Release|Win32.ActiveCfg = Release|Win32 14 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2005/touch/touch.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 9.00 2 | # Visual Studio 2005 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "touch", "touch.vcproj", "{97176489-82DB-4786-A4AC-95295D927315}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {97176489-82DB-4786-A4AC-95295D927315}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {97176489-82DB-4786-A4AC-95295D927315}.Debug|Win32.Build.0 = Debug|Win32 13 | {97176489-82DB-4786-A4AC-95295D927315}.Release|Win32.ActiveCfg = Release|Win32 14 | {97176489-82DB-4786-A4AC-95295D927315}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2005/wcMT/wcMT.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 9.00 2 | # Visual Studio 2005 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wcMT", "wcMT.vcproj", "{ED245520-F666-457D-937A-60C978755A45}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {ED245520-F666-457D-937A-60C978755A45}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {ED245520-F666-457D-937A-60C978755A45}.Debug|Win32.Build.0 = Debug|Win32 13 | {ED245520-F666-457D-937A-60C978755A45}.Release|Win32.ActiveCfg = Release|Win32 14 | {ED245520-F666-457D-937A-60C978755A45}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/Excption/Excption.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/Excption/Excption.suo -------------------------------------------------------------------------------- /src/Projects2008/FreeSpace/FreeSpace.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/FreeSpace/FreeSpace.suo -------------------------------------------------------------------------------- /src/Projects2008/JobObjectShell/JobObjectShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/JobObjectShell/JobObjectShell.suo -------------------------------------------------------------------------------- /src/Projects2008/JobShell/JobShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/JobShell/JobShell.suo -------------------------------------------------------------------------------- /src/Projects2008/RecordAccess/RecordAccess.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/RecordAccess/RecordAccess.suo -------------------------------------------------------------------------------- /src/Projects2008/RecordAccessMM/RecordAccessMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/RecordAccessMM/RecordAccessMM.suo -------------------------------------------------------------------------------- /src/Projects2008/RecordAccessTestDataGenerate/RecordAccessTestDataGenerate.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/RecordAccessTestDataGenerate/RecordAccessTestDataGenerate.suo -------------------------------------------------------------------------------- /src/Projects2008/Redirect/Redirect.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/Redirect/Redirect.suo -------------------------------------------------------------------------------- /src/Projects2008/SendReceiveSKHA/SendReceiveSKHA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/SendReceiveSKHA/SendReceiveSKHA.suo -------------------------------------------------------------------------------- /src/Projects2008/SendReceiveSKST_DLL/SendReceiveSKST_DLL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/SendReceiveSKST_DLL/SendReceiveSKST_DLL.suo -------------------------------------------------------------------------------- /src/Projects2008/ServiceShell/ServiceShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ServiceShell/ServiceShell.suo -------------------------------------------------------------------------------- /src/Projects2008/SimpleService/SimpleService.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/SimpleService/SimpleService.suo -------------------------------------------------------------------------------- /src/Projects2008/SrvrBcst/SrvrBcst.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/SrvrBcst/SrvrBcst.suo -------------------------------------------------------------------------------- /src/Projects2008/TestLock/TestLock.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/TestLock/TestLock.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStage/ThreeStage.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStage/ThreeStage.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStageCS/ThreeStageCS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStageCS/ThreeStageCS.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStageCS_Sig/ThreeStageCS_Sig.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStageCS_Sig/ThreeStageCS_Sig.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStageCV/ThreeStage.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStageCV/ThreeStage.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStageCancel/ThreeStageCancel.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStageCancel/ThreeStageCancel.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStagePthreads/ThreeStagePthreads.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStagePthreads/ThreeStagePthreads.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStageSig_noSOAW/ThreeStageSig_noSOAW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStageSig_noSOAW/ThreeStageSig_noSOAW.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStage_Sig/ThreeStage_Sig.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStage_Sig/ThreeStage_Sig.suo -------------------------------------------------------------------------------- /src/Projects2008/ThreeStage_noSOAW/ThreeStage_noSOAW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ThreeStage_noSOAW/ThreeStage_noSOAW.suo -------------------------------------------------------------------------------- /src/Projects2008/TimeBeep/TimeBeep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/TimeBeep/TimeBeep.suo -------------------------------------------------------------------------------- /src/Projects2008/TimedMutualExclusion/TimedMutualExclusion.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/TimedMutualExclusion/TimedMutualExclusion.suo -------------------------------------------------------------------------------- /src/Projects2008/TimedMutualExclusionSC/TimedMutualExclusionSC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/TimedMutualExclusionSC/TimedMutualExclusionSC.suo -------------------------------------------------------------------------------- /src/Projects2008/Utility_4_0/Utility_4_0.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/Utility_4_0/Utility_4_0.suo -------------------------------------------------------------------------------- /src/Projects2008/Version/Version.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/Version/Version.suo -------------------------------------------------------------------------------- /src/Projects2008/cat/cat.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual C++ Express 2010 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cat", "cat.vcxproj", "{F44A9001-A1B5-46AE-885C-3D9E440FAAEA}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Debug|Win32.Build.0 = Debug|Win32 13 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Release|Win32.ActiveCfg = Release|Win32 14 | {F44A9001-A1B5-46AE-885C-3D9E440FAAEA}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cat/cat.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cat/cat.suo -------------------------------------------------------------------------------- /src/Projects2008/cat/cat.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cat/cat.suo.old -------------------------------------------------------------------------------- /src/Projects2008/catUni/catUni.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/catUni/catUni.suo -------------------------------------------------------------------------------- /src/Projects2008/cci/cci.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cci/cci.suo -------------------------------------------------------------------------------- /src/Projects2008/cciEL/cciEL.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cciEL", "cciEL.vcproj", "{C7D841CB-B38C-4C12-8493-E6F53793386F}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Debug|Win32.Build.0 = Debug|Win32 13 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Release|Win32.ActiveCfg = Release|Win32 14 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cciEL/cciEL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciEL/cciEL.suo -------------------------------------------------------------------------------- /src/Projects2008/cciEX/cciEX.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cciEX", "cciEX.vcproj", "{A24F381B-52A5-4B4D-928E-A71CED59F399}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {A24F381B-52A5-4B4D-928E-A71CED59F399}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {A24F381B-52A5-4B4D-928E-A71CED59F399}.Debug|Win32.Build.0 = Debug|Win32 13 | {A24F381B-52A5-4B4D-928E-A71CED59F399}.Release|Win32.ActiveCfg = Release|Win32 14 | {A24F381B-52A5-4B4D-928E-A71CED59F399}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cciEX/cciEX.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciEX/cciEX.suo -------------------------------------------------------------------------------- /src/Projects2008/cciLBSS/cciLBSS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciLBSS/cciLBSS.suo -------------------------------------------------------------------------------- /src/Projects2008/cciMM/cciMM.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cciMM", "cciMM.vcproj", "{C7D841CB-B38C-4C12-8493-E6F53793386F}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Debug|Win32.Build.0 = Debug|Win32 13 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Release|Win32.ActiveCfg = Release|Win32 14 | {C7D841CB-B38C-4C12-8493-E6F53793386F}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cciMM/cciMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciMM/cciMM.suo -------------------------------------------------------------------------------- /src/Projects2008/cciMT/cciMT.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cciMT", "cciMT.vcproj", "{32004179-029E-4A31-898D-9D07E0A7E2ED}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {32004179-029E-4A31-898D-9D07E0A7E2ED}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {32004179-029E-4A31-898D-9D07E0A7E2ED}.Debug|Win32.Build.0 = Debug|Win32 13 | {32004179-029E-4A31-898D-9D07E0A7E2ED}.Release|Win32.ActiveCfg = Release|Win32 14 | {32004179-029E-4A31-898D-9D07E0A7E2ED}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cciMT/cciMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciMT/cciMT.suo -------------------------------------------------------------------------------- /src/Projects2008/cciMTMM/cciMTMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciMTMM/cciMTMM.suo -------------------------------------------------------------------------------- /src/Projects2008/cciMT_VTP/cciMT_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciMT_VTP/cciMT_VTP.suo -------------------------------------------------------------------------------- /src/Projects2008/cciOV/cciOV.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cciOV", "cciOV.vcproj", "{41C74658-A016-42C5-A3BE-01BC037DDDAA}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {41C74658-A016-42C5-A3BE-01BC037DDDAA}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {41C74658-A016-42C5-A3BE-01BC037DDDAA}.Debug|Win32.Build.0 = Debug|Win32 13 | {41C74658-A016-42C5-A3BE-01BC037DDDAA}.Release|Win32.ActiveCfg = Release|Win32 14 | {41C74658-A016-42C5-A3BE-01BC037DDDAA}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cciOV/cciOV.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cciOV/cciOV.suo -------------------------------------------------------------------------------- /src/Projects2008/cci_fDll/cci_fDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cci_fDll/cci_fDll.suo -------------------------------------------------------------------------------- /src/Projects2008/cci_fMMDll/cci_fMMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cci_fMMDll/cci_fMMDll.suo -------------------------------------------------------------------------------- /src/Projects2008/chmodW/chmodW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/chmodW/chmodW.suo -------------------------------------------------------------------------------- /src/Projects2008/clear/clear.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clear", "clear.vcproj", "{B0709613-DEDF-416A-8811-5B67249C6DB3}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {B0709613-DEDF-416A-8811-5B67249C6DB3}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {B0709613-DEDF-416A-8811-5B67249C6DB3}.Debug|Win32.Build.0 = Debug|Win32 13 | {B0709613-DEDF-416A-8811-5B67249C6DB3}.Release|Win32.ActiveCfg = Release|Win32 14 | {B0709613-DEDF-416A-8811-5B67249C6DB3}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/clear/clear.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/clear/clear.suo -------------------------------------------------------------------------------- /src/Projects2008/clientNP/clientNP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/clientNP/clientNP.suo -------------------------------------------------------------------------------- /src/Projects2008/clientSK/clientSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/clientSK/clientSK.suo -------------------------------------------------------------------------------- /src/Projects2008/clientSKST/clientSKST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/clientSKST/clientSKST.suo -------------------------------------------------------------------------------- /src/Projects2008/commandsIP/commandsIP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/commandsIP/commandsIP.suo -------------------------------------------------------------------------------- /src/Projects2008/compMP/compMP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/compMP/compMP.suo -------------------------------------------------------------------------------- /src/Projects2008/cpC/cpC.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpC", "cpC.vcproj", "{55EBB444-6A45-47EA-8FA5-D0EC904B76AF}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {55EBB444-6A45-47EA-8FA5-D0EC904B76AF}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {55EBB444-6A45-47EA-8FA5-D0EC904B76AF}.Debug|Win32.Build.0 = Debug|Win32 13 | {55EBB444-6A45-47EA-8FA5-D0EC904B76AF}.Release|Win32.ActiveCfg = Release|Win32 14 | {55EBB444-6A45-47EA-8FA5-D0EC904B76AF}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cpC/cpC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cpC/cpC.suo -------------------------------------------------------------------------------- /src/Projects2008/cpCF/cpCF.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpCF", "cpCF.vcproj", "{C043CC66-76E3-4BE5-B0D1-653E3DBB5B2F}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {C043CC66-76E3-4BE5-B0D1-653E3DBB5B2F}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {C043CC66-76E3-4BE5-B0D1-653E3DBB5B2F}.Debug|Win32.Build.0 = Debug|Win32 13 | {C043CC66-76E3-4BE5-B0D1-653E3DBB5B2F}.Release|Win32.ActiveCfg = Release|Win32 14 | {C043CC66-76E3-4BE5-B0D1-653E3DBB5B2F}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cpCF/cpCF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cpCF/cpCF.suo -------------------------------------------------------------------------------- /src/Projects2008/cpUC/cpUC.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpUC", "cpUC.vcproj", "{BEFF4DDD-C585-4572-852E-4F3887490EA9}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {BEFF4DDD-C585-4572-852E-4F3887490EA9}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {BEFF4DDD-C585-4572-852E-4F3887490EA9}.Debug|Win32.Build.0 = Debug|Win32 13 | {BEFF4DDD-C585-4572-852E-4F3887490EA9}.Release|Win32.ActiveCfg = Release|Win32 14 | {BEFF4DDD-C585-4572-852E-4F3887490EA9}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cpUC/cpUC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cpUC/cpUC.suo -------------------------------------------------------------------------------- /src/Projects2008/cpW/cpW.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpW", "cpW.vcproj", "{A9DB0746-91F3-43EB-A084-3D18169FED50}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {A9DB0746-91F3-43EB-A084-3D18169FED50}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {A9DB0746-91F3-43EB-A084-3D18169FED50}.Debug|Win32.Build.0 = Debug|Win32 13 | {A9DB0746-91F3-43EB-A084-3D18169FED50}.Release|Win32.ActiveCfg = Release|Win32 14 | {A9DB0746-91F3-43EB-A084-3D18169FED50}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cpW/cpW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cpW/cpW.suo -------------------------------------------------------------------------------- /src/Projects2008/cpWFA/cpWFA.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpWFA", "cpWFA.vcproj", "{66CAA76B-B1C8-44F4-B31F-25C0F4C777CA}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {66CAA76B-B1C8-44F4-B31F-25C0F4C777CA}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {66CAA76B-B1C8-44F4-B31F-25C0F4C777CA}.Debug|Win32.Build.0 = Debug|Win32 13 | {66CAA76B-B1C8-44F4-B31F-25C0F4C777CA}.Release|Win32.ActiveCfg = Release|Win32 14 | {66CAA76B-B1C8-44F4-B31F-25C0F4C777CA}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/cpWFA/cpWFA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/cpWFA/cpWFA.suo -------------------------------------------------------------------------------- /src/Projects2008/ctrlc/ctrlc.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctrlc", "ctrlc.vcproj", "{468E48F4-468D-41EA-9E85-2BC606765DC9}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {468E48F4-468D-41EA-9E85-2BC606765DC9}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {468E48F4-468D-41EA-9E85-2BC606765DC9}.Debug|Win32.Build.0 = Debug|Win32 13 | {468E48F4-468D-41EA-9E85-2BC606765DC9}.Release|Win32.ActiveCfg = Release|Win32 14 | {468E48F4-468D-41EA-9E85-2BC606765DC9}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/ctrlc/ctrlc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/ctrlc/ctrlc.suo -------------------------------------------------------------------------------- /src/Projects2008/eventPC/eventPC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/eventPC/eventPC.suo -------------------------------------------------------------------------------- /src/Projects2008/geonames/geonames.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/geonames/geonames.suo -------------------------------------------------------------------------------- /src/Projects2008/getn/getn.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "getn", "getn.vcproj", "{1FDD13BC-5CF9-49F6-A582-D4AE15E26E26}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {1FDD13BC-5CF9-49F6-A582-D4AE15E26E26}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {1FDD13BC-5CF9-49F6-A582-D4AE15E26E26}.Debug|Win32.Build.0 = Debug|Win32 13 | {1FDD13BC-5CF9-49F6-A582-D4AE15E26E26}.Release|Win32.ActiveCfg = Release|Win32 14 | {1FDD13BC-5CF9-49F6-A582-D4AE15E26E26}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/getn/getn.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/getn/getn.suo -------------------------------------------------------------------------------- /src/Projects2008/grep/grep.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grep", "grep.vcproj", "{24398AF3-5925-40E2-9205-0362C219D0C7}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {24398AF3-5925-40E2-9205-0362C219D0C7}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {24398AF3-5925-40E2-9205-0362C219D0C7}.Debug|Win32.Build.0 = Debug|Win32 13 | {24398AF3-5925-40E2-9205-0362C219D0C7}.Release|Win32.ActiveCfg = Release|Win32 14 | {24398AF3-5925-40E2-9205-0362C219D0C7}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/grep/grep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/grep/grep.suo -------------------------------------------------------------------------------- /src/Projects2008/grepMP/grepMP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/grepMP/grepMP.suo -------------------------------------------------------------------------------- /src/Projects2008/grepMT/grepMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/grepMT/grepMT.suo -------------------------------------------------------------------------------- /src/Projects2008/lsFP/lsFP.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsFP", "lsFP.vcproj", "{6E9BDE9C-7E48-4842-8FDF-235FF0ADFA7F}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {6E9BDE9C-7E48-4842-8FDF-235FF0ADFA7F}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {6E9BDE9C-7E48-4842-8FDF-235FF0ADFA7F}.Debug|Win32.Build.0 = Debug|Win32 13 | {6E9BDE9C-7E48-4842-8FDF-235FF0ADFA7F}.Release|Win32.ActiveCfg = Release|Win32 14 | {6E9BDE9C-7E48-4842-8FDF-235FF0ADFA7F}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/lsFP/lsFP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/lsFP/lsFP.suo -------------------------------------------------------------------------------- /src/Projects2008/lsReg/lsReg.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsReg", "lsReg.vcproj", "{791245F6-A5E7-49A2-9B7E-EDCBDF0B3C81}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {791245F6-A5E7-49A2-9B7E-EDCBDF0B3C81}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {791245F6-A5E7-49A2-9B7E-EDCBDF0B3C81}.Debug|Win32.Build.0 = Debug|Win32 13 | {791245F6-A5E7-49A2-9B7E-EDCBDF0B3C81}.Release|Win32.ActiveCfg = Release|Win32 14 | {791245F6-A5E7-49A2-9B7E-EDCBDF0B3C81}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/lsReg/lsReg.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/lsReg/lsReg.suo -------------------------------------------------------------------------------- /src/Projects2008/lsW/lsW.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsW", "lsW.vcproj", "{41982719-8F5D-4A1C-99E7-876B938BAA31}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Debug|Win32.Build.0 = Debug|Win32 13 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Release|Win32.ActiveCfg = Release|Win32 14 | {41982719-8F5D-4A1C-99E7-876B938BAA31}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/lsW/lsW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/lsW/lsW.suo -------------------------------------------------------------------------------- /src/Projects2008/mulitSem/mulitSem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/mulitSem/mulitSem.suo -------------------------------------------------------------------------------- /src/Projects2008/multiPCav/multiPCav.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/multiPCav/multiPCav.suo -------------------------------------------------------------------------------- /src/Projects2008/pcstatsDLL/pcstatsDLL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/pcstatsDLL/pcstatsDLL.suo -------------------------------------------------------------------------------- /src/Projects2008/pwd/pwd.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pwd", "pwd.vcproj", "{88AD2B75-1041-4BF9-B84E-5E9A74DE323F}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {88AD2B75-1041-4BF9-B84E-5E9A74DE323F}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {88AD2B75-1041-4BF9-B84E-5E9A74DE323F}.Debug|Win32.Build.0 = Debug|Win32 13 | {88AD2B75-1041-4BF9-B84E-5E9A74DE323F}.Release|Win32.ActiveCfg = Release|Win32 14 | {88AD2B75-1041-4BF9-B84E-5E9A74DE323F}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/pwd/pwd.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/pwd/pwd.suo -------------------------------------------------------------------------------- /src/Projects2008/pwdA/pwdA.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pwdA", "pwdA.vcproj", "{53E20656-11F7-4725-A96D-67F922F4CD56}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {53E20656-11F7-4725-A96D-67F922F4CD56}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {53E20656-11F7-4725-A96D-67F922F4CD56}.Debug|Win32.Build.0 = Debug|Win32 13 | {53E20656-11F7-4725-A96D-67F922F4CD56}.Release|Win32.ActiveCfg = Release|Win32 14 | {53E20656-11F7-4725-A96D-67F922F4CD56}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/pwdA/pwdA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/pwdA/pwdA.suo -------------------------------------------------------------------------------- /src/Projects2008/randfile/randfile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/randfile/randfile.suo -------------------------------------------------------------------------------- /src/Projects2008/semaphore/semaphore.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/semaphore/semaphore.suo -------------------------------------------------------------------------------- /src/Projects2008/serverCP/serverCP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverCP/serverCP.suo -------------------------------------------------------------------------------- /src/Projects2008/serverNP/serverNP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverNP/serverNP.suo -------------------------------------------------------------------------------- /src/Projects2008/serverNP_secure/serverNP_secure.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverNP_secure/serverNP_secure.suo -------------------------------------------------------------------------------- /src/Projects2008/serverSK/serverSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverSK/serverSK.suo -------------------------------------------------------------------------------- /src/Projects2008/serverSKHA/serverSKHA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverSKHA/serverSKHA.suo -------------------------------------------------------------------------------- /src/Projects2008/serverSKST/serverSKST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serverSKST/serverSKST.suo -------------------------------------------------------------------------------- /src/Projects2008/serviceSK/serviceSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/serviceSK/serviceSK.suo -------------------------------------------------------------------------------- /src/Projects2008/simplePC/simplePC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/simplePC/simplePC.suo -------------------------------------------------------------------------------- /src/Projects2008/sortBT/sortBT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortBT/sortBT.suo -------------------------------------------------------------------------------- /src/Projects2008/sortBTSR/sortBTSR.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortBTSR/sortBTSR.suo -------------------------------------------------------------------------------- /src/Projects2008/sortFL/sortFL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortFL/sortFL.suo -------------------------------------------------------------------------------- /src/Projects2008/sortHP/sortHP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortHP/sortHP.suo -------------------------------------------------------------------------------- /src/Projects2008/sortMM/sortMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortMM/sortMM.suo -------------------------------------------------------------------------------- /src/Projects2008/sortMT/sortMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/sortMT/sortMT.suo -------------------------------------------------------------------------------- /src/Projects2008/statsCS/statsCS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsCS/statsCS.suo -------------------------------------------------------------------------------- /src/Projects2008/statsIN/statsIN.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsIN/statsIN.suo -------------------------------------------------------------------------------- /src/Projects2008/statsMX/statsMX.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsMX/statsMX.suo -------------------------------------------------------------------------------- /src/Projects2008/statsMX_ST/statsMX_ST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsMX_ST/statsMX_ST.suo -------------------------------------------------------------------------------- /src/Projects2008/statsNS/statsNS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsNS/statsNS.suo -------------------------------------------------------------------------------- /src/Projects2008/statsSRW/statsSRW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsSRW/statsSRW.suo -------------------------------------------------------------------------------- /src/Projects2008/statsSRW_VTP/statsSRW_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/statsSRW_VTP/statsSRW_VTP.suo -------------------------------------------------------------------------------- /src/Projects2008/tail/tail.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tail", "tail.vcproj", "{69269D21-B3F1-4383-8A18-0A59B912C5B1}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {69269D21-B3F1-4383-8A18-0A59B912C5B1}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {69269D21-B3F1-4383-8A18-0A59B912C5B1}.Debug|Win32.Build.0 = Debug|Win32 13 | {69269D21-B3F1-4383-8A18-0A59B912C5B1}.Release|Win32.ActiveCfg = Release|Win32 14 | {69269D21-B3F1-4383-8A18-0A59B912C5B1}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/tail/tail.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/tail/tail.suo -------------------------------------------------------------------------------- /src/Projects2008/testTHB/testTHB.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/testTHB/testTHB.suo -------------------------------------------------------------------------------- /src/Projects2008/timep/timep.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "timep", "timep.vcproj", "{0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Debug|Win32.Build.0 = Debug|Win32 13 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Release|Win32.ActiveCfg = Release|Win32 14 | {0BC6F1B5-9916-4CE6-99BB-0F28ADA8570A}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/timep/timep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/timep/timep.suo -------------------------------------------------------------------------------- /src/Projects2008/touch/touch.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 10.00 2 | # Visual Studio 2008 3 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "touch", "touch.vcproj", "{97176489-82DB-4786-A4AC-95295D927315}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Win32 = Debug|Win32 8 | Release|Win32 = Release|Win32 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {97176489-82DB-4786-A4AC-95295D927315}.Debug|Win32.ActiveCfg = Debug|Win32 12 | {97176489-82DB-4786-A4AC-95295D927315}.Debug|Win32.Build.0 = Debug|Win32 13 | {97176489-82DB-4786-A4AC-95295D927315}.Release|Win32.ActiveCfg = Release|Win32 14 | {97176489-82DB-4786-A4AC-95295D927315}.Release|Win32.Build.0 = Release|Win32 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /src/Projects2008/touch/touch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/touch/touch.suo -------------------------------------------------------------------------------- /src/Projects2008/toupper/toupper.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/toupper/toupper.suo -------------------------------------------------------------------------------- /src/Projects2008/wcMT/wcMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/wcMT/wcMT.suo -------------------------------------------------------------------------------- /src/Projects2008/wcMTMM/wcMTMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/wcMTMM/wcMTMM.suo -------------------------------------------------------------------------------- /src/Projects2008/wcMT_VTP/wcMT_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008/wcMT_VTP/wcMT_VTP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/Excption/Excption.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/Excption/Excption.suo -------------------------------------------------------------------------------- /src/Projects2008_64/FreeSpace/FreeSpace.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/FreeSpace/FreeSpace.suo -------------------------------------------------------------------------------- /src/Projects2008_64/JobObjectShell/JobObjectShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/JobObjectShell/JobObjectShell.suo -------------------------------------------------------------------------------- /src/Projects2008_64/JobShell/JobShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/JobShell/JobShell.suo -------------------------------------------------------------------------------- /src/Projects2008_64/RecordAccess/RecordAccess.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/RecordAccess/RecordAccess.suo -------------------------------------------------------------------------------- /src/Projects2008_64/RecordAccessMM/RecordAccessMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/RecordAccessMM/RecordAccessMM.suo -------------------------------------------------------------------------------- /src/Projects2008_64/RecordAccessTestDataGenerate/RecordAccessTestDataGenerate.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/RecordAccessTestDataGenerate/RecordAccessTestDataGenerate.suo -------------------------------------------------------------------------------- /src/Projects2008_64/Redirect/Redirect.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/Redirect/Redirect.suo -------------------------------------------------------------------------------- /src/Projects2008_64/SendReceiveSKHA/SendReceiveSKHA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/SendReceiveSKHA/SendReceiveSKHA.suo -------------------------------------------------------------------------------- /src/Projects2008_64/SendReceiveSKST_DLL/SendReceiveSKST_DLL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/SendReceiveSKST_DLL/SendReceiveSKST_DLL.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ServiceShell/ServiceShell.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ServiceShell/ServiceShell.suo -------------------------------------------------------------------------------- /src/Projects2008_64/SimpleService/SimpleService.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/SimpleService/SimpleService.suo -------------------------------------------------------------------------------- /src/Projects2008_64/SrvrBcst/SrvrBcst.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/SrvrBcst/SrvrBcst.suo -------------------------------------------------------------------------------- /src/Projects2008_64/TestLock/TestLock.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/TestLock/TestLock.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStage/ThreeStage.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStage/ThreeStage.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStageCS/ThreeStageCS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStageCS/ThreeStageCS.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStageCS_Sig/ThreeStageCS_Sig.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStageCS_Sig/ThreeStageCS_Sig.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStageCV/ThreeStage.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStageCV/ThreeStage.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStageCancel/ThreeStageCancel.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStageCancel/ThreeStageCancel.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStageSig_noSOAW/ThreeStageSig_noSOAW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStageSig_noSOAW/ThreeStageSig_noSOAW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStage_Sig/ThreeStage_Sig.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStage_Sig/ThreeStage_Sig.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ThreeStage_noSOAW/ThreeStage_noSOAW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ThreeStage_noSOAW/ThreeStage_noSOAW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/TimeBeep/TimeBeep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/TimeBeep/TimeBeep.suo -------------------------------------------------------------------------------- /src/Projects2008_64/TimedMutualExclusion/TimedMutualExclusion.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/TimedMutualExclusion/TimedMutualExclusion.suo -------------------------------------------------------------------------------- /src/Projects2008_64/TimedMutualExclusionSC/TimedMutualExclusionSC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/TimedMutualExclusionSC/TimedMutualExclusionSC.suo -------------------------------------------------------------------------------- /src/Projects2008_64/Utility_4_0/Utility_4_0.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/Utility_4_0/Utility_4_0.suo -------------------------------------------------------------------------------- /src/Projects2008_64/Version/Version.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/Version/Version.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cat/cat.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cat/cat.suo -------------------------------------------------------------------------------- /src/Projects2008_64/catUni/catUni.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/catUni/catUni.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cci/cci.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cci/cci.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cci/cci.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cci/cci.suo.old -------------------------------------------------------------------------------- /src/Projects2008_64/cciEL/cciEL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciEL/cciEL.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciEX/cciEX.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciEX/cciEX.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciEX/cciEX.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciEX/cciEX.suo.old -------------------------------------------------------------------------------- /src/Projects2008_64/cciLBSS/cciLBSS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciLBSS/cciLBSS.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciMM/cciMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciMM/cciMM.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciMT/cciMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciMT/cciMT.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciMTMM/cciMTMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciMTMM/cciMTMM.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciMT_VTP/cciMT_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciMT_VTP/cciMT_VTP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cciOV/cciOV.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cciOV/cciOV.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cci_fDll/cci_fDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cci_fDll/cci_fDll.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cci_fMMDll/cci_fMMDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cci_fMMDll/cci_fMMDll.suo -------------------------------------------------------------------------------- /src/Projects2008_64/chmodW/chmodW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/chmodW/chmodW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/clear/clear.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/clear/clear.suo -------------------------------------------------------------------------------- /src/Projects2008_64/clientNP/clientNP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/clientNP/clientNP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/clientSK/clientSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/clientSK/clientSK.suo -------------------------------------------------------------------------------- /src/Projects2008_64/clientSKST/clientSKST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/clientSKST/clientSKST.suo -------------------------------------------------------------------------------- /src/Projects2008_64/commandsIP/commandsIP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/commandsIP/commandsIP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/compMP/compMP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/compMP/compMP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cpC/cpC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cpC/cpC.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cpCF/cpCF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cpCF/cpCF.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cpUC/cpUC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cpUC/cpUC.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cpW/cpW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cpW/cpW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/cpWFA/cpWFA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/cpWFA/cpWFA.suo -------------------------------------------------------------------------------- /src/Projects2008_64/ctrlc/ctrlc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/ctrlc/ctrlc.suo -------------------------------------------------------------------------------- /src/Projects2008_64/eventPC/eventPC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/eventPC/eventPC.suo -------------------------------------------------------------------------------- /src/Projects2008_64/geonames/geonames.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/geonames/geonames.suo -------------------------------------------------------------------------------- /src/Projects2008_64/getn/getn.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/getn/getn.suo -------------------------------------------------------------------------------- /src/Projects2008_64/grep/grep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/grep/grep.suo -------------------------------------------------------------------------------- /src/Projects2008_64/grepMP/grepMP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/grepMP/grepMP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/grepMT/grepMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/grepMT/grepMT.suo -------------------------------------------------------------------------------- /src/Projects2008_64/lsFP/lsFP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/lsFP/lsFP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/lsReg/lsReg.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/lsReg/lsReg.suo -------------------------------------------------------------------------------- /src/Projects2008_64/lsW/lsW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/lsW/lsW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/mulitSem/mulitSem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/mulitSem/mulitSem.suo -------------------------------------------------------------------------------- /src/Projects2008_64/multiPCav/multiPCav.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/multiPCav/multiPCav.suo -------------------------------------------------------------------------------- /src/Projects2008_64/pcstatsDLL/pcstatsDLL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/pcstatsDLL/pcstatsDLL.suo -------------------------------------------------------------------------------- /src/Projects2008_64/pwd/pwd.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/pwd/pwd.suo -------------------------------------------------------------------------------- /src/Projects2008_64/pwdA/pwdA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/pwdA/pwdA.suo -------------------------------------------------------------------------------- /src/Projects2008_64/randfile/randfile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/randfile/randfile.suo -------------------------------------------------------------------------------- /src/Projects2008_64/semaphore/semaphore.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/semaphore/semaphore.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverCP/serverCP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverCP/serverCP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverNP/serverNP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverNP/serverNP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverNP_secure/serverNP_secure.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverNP_secure/serverNP_secure.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverSK/serverSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverSK/serverSK.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverSKHA/serverSKHA.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverSKHA/serverSKHA.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serverSKST/serverSKST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serverSKST/serverSKST.suo -------------------------------------------------------------------------------- /src/Projects2008_64/serviceSK/serviceSK.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/serviceSK/serviceSK.suo -------------------------------------------------------------------------------- /src/Projects2008_64/simplePC/simplePC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/simplePC/simplePC.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortBT/sortBT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortBT/sortBT.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortBTSR/sortBTSR.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortBTSR/sortBTSR.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortFL/sortFL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortFL/sortFL.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortHP/sortHP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortHP/sortHP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortMM/sortMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortMM/sortMM.suo -------------------------------------------------------------------------------- /src/Projects2008_64/sortMT/sortMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/sortMT/sortMT.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsCS/statsCS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsCS/statsCS.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsIN/statsIN.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsIN/statsIN.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsMX/statsMX.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsMX/statsMX.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsMX_ST/statsMX_ST.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsMX_ST/statsMX_ST.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsNS/statsNS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsNS/statsNS.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsSRW/statsSRW.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsSRW/statsSRW.suo -------------------------------------------------------------------------------- /src/Projects2008_64/statsSRW_VTP/statsSRW_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/statsSRW_VTP/statsSRW_VTP.suo -------------------------------------------------------------------------------- /src/Projects2008_64/tail/tail.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/tail/tail.suo -------------------------------------------------------------------------------- /src/Projects2008_64/testTHB/testTHB.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/testTHB/testTHB.suo -------------------------------------------------------------------------------- /src/Projects2008_64/timep/timep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/timep/timep.suo -------------------------------------------------------------------------------- /src/Projects2008_64/touch/touch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/touch/touch.suo -------------------------------------------------------------------------------- /src/Projects2008_64/toupper/toupper.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/toupper/toupper.suo -------------------------------------------------------------------------------- /src/Projects2008_64/wcMT/wcMT.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/wcMT/wcMT.suo -------------------------------------------------------------------------------- /src/Projects2008_64/wcMTMM/wcMTMM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/wcMTMM/wcMTMM.suo -------------------------------------------------------------------------------- /src/Projects2008_64/wcMT_VTP/wcMT_VTP.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/Projects2008_64/wcMT_VTP/wcMT_VTP.suo -------------------------------------------------------------------------------- /src/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/ReadMe.txt -------------------------------------------------------------------------------- /src/UTILITY/GETARGS.C: -------------------------------------------------------------------------------- 1 | /* Process a string to turn it into a command line. */ 2 | 3 | #include "Everything.h" 4 | 5 | void GetArgs (LPCTSTR Command, int *pArgc, LPTSTR argstr []) 6 | { 7 | int i, icm = 0; 8 | DWORD ic = 0; 9 | 10 | for (i = 0; ic < _tcslen (Command); i++) { 11 | while (ic < _tcslen (Command) && 12 | Command [ic] != _T(' ') && Command [ic] != _T('\t')) { 13 | argstr [i] [icm] = Command [ic]; 14 | ic++; 15 | icm++; 16 | } 17 | argstr [i] [icm] = _T('\0'); 18 | while (ic < _tcslen (Command) && 19 | (Command [ic] == _T(' ') || Command [ic] == _T('\t'))) 20 | ic++; 21 | icm = 0; 22 | } 23 | 24 | if (pArgc != NULL) *pArgc = i; 25 | return; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /src/UTILITY/WSTRINGS.C: -------------------------------------------------------------------------------- 1 | #include "Everything.h" 2 | 3 | LPCTSTR wmemchr (LPCTSTR s, TCHAR c, DWORD n); 4 | 5 | /* Collection of wide "w" string routines. */ 6 | 7 | LPCTSTR wmemchr (LPCTSTR s, TCHAR c, DWORD n) 8 | 9 | /* Locate the first occurrence of c in the 10 | initial n characters of the object indicated by s. 11 | Returns a pointer to the located character or 12 | a NULL if the character is not found. */ 13 | { 14 | DWORD in = 0; 15 | LPCTSTR su; 16 | 17 | for (su = s; in < n && *su != _T('\0'); su++) 18 | if (*su == c) return su; 19 | return NULL; 20 | } 21 | -------------------------------------------------------------------------------- /src/lib/Asc2UnDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/Asc2UnDll.lib -------------------------------------------------------------------------------- /src/lib/SendReceiveSKHA.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/SendReceiveSKHA.lib -------------------------------------------------------------------------------- /src/lib/SendReceiveSKHA_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/SendReceiveSKHA_64.lib -------------------------------------------------------------------------------- /src/lib/SendReceiveSKST_DLL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/SendReceiveSKST_DLL.lib -------------------------------------------------------------------------------- /src/lib/SendReceiveSKST_DLL_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/SendReceiveSKST_DLL_64.lib -------------------------------------------------------------------------------- /src/lib/UtilityStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/UtilityStatic.lib -------------------------------------------------------------------------------- /src/lib/UtilityUnicode.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/UtilityUnicode.lib -------------------------------------------------------------------------------- /src/lib/Utility_4_0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/Utility_4_0.exp -------------------------------------------------------------------------------- /src/lib/Utility_4_0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/Utility_4_0.lib -------------------------------------------------------------------------------- /src/lib/Utility_4_0_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/Utility_4_0_64.lib -------------------------------------------------------------------------------- /src/lib/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/lib/pthreadVC2.lib -------------------------------------------------------------------------------- /src/run5/Excption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/Excption.exe -------------------------------------------------------------------------------- /src/run5/FreeSpace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/FreeSpace.exe -------------------------------------------------------------------------------- /src/run5/JobShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/JobShell.exe -------------------------------------------------------------------------------- /src/run5/MultiSem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/MultiSem.exe -------------------------------------------------------------------------------- /src/run5/RecordAccess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/RecordAccess.exe -------------------------------------------------------------------------------- /src/run5/RecordAccessMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/RecordAccessMM.exe -------------------------------------------------------------------------------- /src/run5/RecordAccessTestDataGenerate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/RecordAccessTestDataGenerate.exe -------------------------------------------------------------------------------- /src/run5/SendReceiveSKHA.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/SendReceiveSKHA.DLL -------------------------------------------------------------------------------- /src/run5/SendReceiveSKST_DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/SendReceiveSKST_DLL.dll -------------------------------------------------------------------------------- /src/run5/ServiceShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ServiceShell.exe -------------------------------------------------------------------------------- /src/run5/SimpleService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/SimpleService.exe -------------------------------------------------------------------------------- /src/run5/SrvrBcst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/SrvrBcst.exe -------------------------------------------------------------------------------- /src/run5/TestLock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/TestLock.exe -------------------------------------------------------------------------------- /src/run5/ThreeStage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStage.exe -------------------------------------------------------------------------------- /src/run5/ThreeStageCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStageCS.exe -------------------------------------------------------------------------------- /src/run5/ThreeStageCS_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStageCS_Sig.exe -------------------------------------------------------------------------------- /src/run5/ThreeStageCancel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStageCancel.exe -------------------------------------------------------------------------------- /src/run5/ThreeStageSig_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStageSig_noSOAW.exe -------------------------------------------------------------------------------- /src/run5/ThreeStage_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStage_Sig.exe -------------------------------------------------------------------------------- /src/run5/ThreeStage_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ThreeStage_noSOAW.exe -------------------------------------------------------------------------------- /src/run5/TimeBeep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/TimeBeep.exe -------------------------------------------------------------------------------- /src/run5/TimedMutualExclusionSC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/TimedMutualExclusionSC.exe -------------------------------------------------------------------------------- /src/run5/Utility_4_0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/Utility_4_0.dll -------------------------------------------------------------------------------- /src/run5/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cat.exe -------------------------------------------------------------------------------- /src/run5/catUNI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/catUNI.exe -------------------------------------------------------------------------------- /src/run5/cci.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cci.exe -------------------------------------------------------------------------------- /src/run5/cciEL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciEL.exe -------------------------------------------------------------------------------- /src/run5/cciEX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciEX.exe -------------------------------------------------------------------------------- /src/run5/cciLBSS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciLBSS.exe -------------------------------------------------------------------------------- /src/run5/cciMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciMM.exe -------------------------------------------------------------------------------- /src/run5/cciMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciMT.exe -------------------------------------------------------------------------------- /src/run5/cciMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciMTMM.exe -------------------------------------------------------------------------------- /src/run5/cciOV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cciOV.exe -------------------------------------------------------------------------------- /src/run5/cci_fDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cci_fDll.dll -------------------------------------------------------------------------------- /src/run5/cci_fMMDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cci_fMMDll.dll -------------------------------------------------------------------------------- /src/run5/chmodW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/chmodW.exe -------------------------------------------------------------------------------- /src/run5/clear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/clear.exe -------------------------------------------------------------------------------- /src/run5/clientNP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/clientNP.exe -------------------------------------------------------------------------------- /src/run5/clientSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/clientSK.exe -------------------------------------------------------------------------------- /src/run5/clientSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/clientSKST.exe -------------------------------------------------------------------------------- /src/run5/commandsIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/commandsIP.dll -------------------------------------------------------------------------------- /src/run5/cpC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cpC.exe -------------------------------------------------------------------------------- /src/run5/cpCF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cpCF.exe -------------------------------------------------------------------------------- /src/run5/cpUC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cpUC.exe -------------------------------------------------------------------------------- /src/run5/cpW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cpW.exe -------------------------------------------------------------------------------- /src/run5/cpWFA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/cpWFA.exe -------------------------------------------------------------------------------- /src/run5/ctrlc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/ctrlc.exe -------------------------------------------------------------------------------- /src/run5/eventPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/eventPC.exe -------------------------------------------------------------------------------- /src/run5/getn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/getn.exe -------------------------------------------------------------------------------- /src/run5/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/grep.exe -------------------------------------------------------------------------------- /src/run5/grepMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/grepMP.exe -------------------------------------------------------------------------------- /src/run5/grepMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/grepMT.exe -------------------------------------------------------------------------------- /src/run5/lsFP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/lsFP.exe -------------------------------------------------------------------------------- /src/run5/lsReg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/lsReg.exe -------------------------------------------------------------------------------- /src/run5/lsW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/lsW.exe -------------------------------------------------------------------------------- /src/run5/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/msvcr70.dll -------------------------------------------------------------------------------- /src/run5/pcstatsDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/pcstatsDLL.dll -------------------------------------------------------------------------------- /src/run5/pwd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/pwd.exe -------------------------------------------------------------------------------- /src/run5/pwdA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/pwdA.exe -------------------------------------------------------------------------------- /src/run5/randfile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/randfile.exe -------------------------------------------------------------------------------- /src/run5/redirect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/redirect.exe -------------------------------------------------------------------------------- /src/run5/semaphore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/semaphore.exe -------------------------------------------------------------------------------- /src/run5/serverNP_secure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serverNP_secure.exe -------------------------------------------------------------------------------- /src/run5/serverSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serverSK.exe -------------------------------------------------------------------------------- /src/run5/serverSKHA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serverSKHA.exe -------------------------------------------------------------------------------- /src/run5/serverSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serverSKST.exe -------------------------------------------------------------------------------- /src/run5/serverSM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serverSM.exe -------------------------------------------------------------------------------- /src/run5/serviceSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/serviceSK.exe -------------------------------------------------------------------------------- /src/run5/simplePC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/simplePC.exe -------------------------------------------------------------------------------- /src/run5/sortBT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortBT.exe -------------------------------------------------------------------------------- /src/run5/sortBTSR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortBTSR.exe -------------------------------------------------------------------------------- /src/run5/sortFL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortFL.exe -------------------------------------------------------------------------------- /src/run5/sortHP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortHP.exe -------------------------------------------------------------------------------- /src/run5/sortMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortMM.exe -------------------------------------------------------------------------------- /src/run5/sortMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/sortMT.exe -------------------------------------------------------------------------------- /src/run5/statsCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsCS.exe -------------------------------------------------------------------------------- /src/run5/statsIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsIN.exe -------------------------------------------------------------------------------- /src/run5/statsMX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsMX.exe -------------------------------------------------------------------------------- /src/run5/statsMX_ST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsMX_ST.exe -------------------------------------------------------------------------------- /src/run5/statsNS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsNS.exe -------------------------------------------------------------------------------- /src/run5/statsSRW_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/statsSRW_VTP.exe -------------------------------------------------------------------------------- /src/run5/tail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/tail.exe -------------------------------------------------------------------------------- /src/run5/testTHB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/testTHB.exe -------------------------------------------------------------------------------- /src/run5/timep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/timep.exe -------------------------------------------------------------------------------- /src/run5/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/touch.exe -------------------------------------------------------------------------------- /src/run5/toupper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/toupper.exe -------------------------------------------------------------------------------- /src/run5/version.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/version.exe -------------------------------------------------------------------------------- /src/run5/wcMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/wcMT.exe -------------------------------------------------------------------------------- /src/run5/wcMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/wcMTMM.exe -------------------------------------------------------------------------------- /src/run5/wcMT_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run5/wcMT_VTP.exe -------------------------------------------------------------------------------- /src/run8/Excption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/Excption.exe -------------------------------------------------------------------------------- /src/run8/FreeSpace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/FreeSpace.exe -------------------------------------------------------------------------------- /src/run8/JobObjectShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/JobObjectShell.exe -------------------------------------------------------------------------------- /src/run8/JobShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/JobShell.exe -------------------------------------------------------------------------------- /src/run8/MultiSem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/MultiSem.exe -------------------------------------------------------------------------------- /src/run8/RecordAccess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/RecordAccess.exe -------------------------------------------------------------------------------- /src/run8/RecordAccessMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/RecordAccessMM.exe -------------------------------------------------------------------------------- /src/run8/RecordAccessTestDataGenerate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/RecordAccessTestDataGenerate.exe -------------------------------------------------------------------------------- /src/run8/Redirect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/Redirect.exe -------------------------------------------------------------------------------- /src/run8/SendReceiveSKHA.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/SendReceiveSKHA.DLL -------------------------------------------------------------------------------- /src/run8/SendReceiveSKST_DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/SendReceiveSKST_DLL.dll -------------------------------------------------------------------------------- /src/run8/ServiceShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ServiceShell.exe -------------------------------------------------------------------------------- /src/run8/SimpleService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/SimpleService.exe -------------------------------------------------------------------------------- /src/run8/SrvrBcst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/SrvrBcst.exe -------------------------------------------------------------------------------- /src/run8/TestLock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/TestLock.exe -------------------------------------------------------------------------------- /src/run8/ThreeStage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStage.exe -------------------------------------------------------------------------------- /src/run8/ThreeStageCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStageCS.exe -------------------------------------------------------------------------------- /src/run8/ThreeStageCS_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStageCS_Sig.exe -------------------------------------------------------------------------------- /src/run8/ThreeStageCV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStageCV.exe -------------------------------------------------------------------------------- /src/run8/ThreeStageCancel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStageCancel.exe -------------------------------------------------------------------------------- /src/run8/ThreeStageSig_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStageSig_noSOAW.exe -------------------------------------------------------------------------------- /src/run8/ThreeStage_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStage_Sig.exe -------------------------------------------------------------------------------- /src/run8/ThreeStage_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ThreeStage_noSOAW.exe -------------------------------------------------------------------------------- /src/run8/TimeBeep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/TimeBeep.exe -------------------------------------------------------------------------------- /src/run8/TimedMutualExclusion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/TimedMutualExclusion.exe -------------------------------------------------------------------------------- /src/run8/TimedMutualExclusionSC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/TimedMutualExclusionSC.exe -------------------------------------------------------------------------------- /src/run8/Utility_4_0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/Utility_4_0.dll -------------------------------------------------------------------------------- /src/run8/Utility_4_0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/Utility_4_0.exp -------------------------------------------------------------------------------- /src/run8/Utility_4_0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/Utility_4_0.lib -------------------------------------------------------------------------------- /src/run8/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cat.exe -------------------------------------------------------------------------------- /src/run8/catUNI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/catUNI.exe -------------------------------------------------------------------------------- /src/run8/cci.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cci.exe -------------------------------------------------------------------------------- /src/run8/cciEL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciEL.exe -------------------------------------------------------------------------------- /src/run8/cciEX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciEX.exe -------------------------------------------------------------------------------- /src/run8/cciLBSS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciLBSS.exe -------------------------------------------------------------------------------- /src/run8/cciMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciMM.exe -------------------------------------------------------------------------------- /src/run8/cciMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciMT.exe -------------------------------------------------------------------------------- /src/run8/cciMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciMTMM.exe -------------------------------------------------------------------------------- /src/run8/cciMT_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciMT_VTP.exe -------------------------------------------------------------------------------- /src/run8/cciOV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cciOV.exe -------------------------------------------------------------------------------- /src/run8/cci_fDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cci_fDll.dll -------------------------------------------------------------------------------- /src/run8/cci_fDll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cci_fDll.exp -------------------------------------------------------------------------------- /src/run8/cci_fDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cci_fDll.lib -------------------------------------------------------------------------------- /src/run8/cci_fMMDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cci_fMMDll.dll -------------------------------------------------------------------------------- /src/run8/chmodW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/chmodW.exe -------------------------------------------------------------------------------- /src/run8/clear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/clear.exe -------------------------------------------------------------------------------- /src/run8/clientNP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/clientNP.exe -------------------------------------------------------------------------------- /src/run8/clientSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/clientSK.exe -------------------------------------------------------------------------------- /src/run8/clientSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/clientSKST.exe -------------------------------------------------------------------------------- /src/run8/commandsIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/commandsIP.dll -------------------------------------------------------------------------------- /src/run8/compMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/compMP.exe -------------------------------------------------------------------------------- /src/run8/cpC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cpC.exe -------------------------------------------------------------------------------- /src/run8/cpCF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cpCF.exe -------------------------------------------------------------------------------- /src/run8/cpUC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cpUC.exe -------------------------------------------------------------------------------- /src/run8/cpW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cpW.exe -------------------------------------------------------------------------------- /src/run8/cpWFA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/cpWFA.exe -------------------------------------------------------------------------------- /src/run8/ctrlc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/ctrlc.exe -------------------------------------------------------------------------------- /src/run8/eventPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/eventPC.exe -------------------------------------------------------------------------------- /src/run8/geonames.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/geonames.exe -------------------------------------------------------------------------------- /src/run8/getn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/getn.exe -------------------------------------------------------------------------------- /src/run8/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/grep.exe -------------------------------------------------------------------------------- /src/run8/grepMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/grepMP.exe -------------------------------------------------------------------------------- /src/run8/grepMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/grepMT.exe -------------------------------------------------------------------------------- /src/run8/lsFP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/lsFP.exe -------------------------------------------------------------------------------- /src/run8/lsReg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/lsReg.exe -------------------------------------------------------------------------------- /src/run8/lsW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/lsW.exe -------------------------------------------------------------------------------- /src/run8/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/msvcr70.dll -------------------------------------------------------------------------------- /src/run8/pcstatsDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/pcstatsDLL.dll -------------------------------------------------------------------------------- /src/run8/pwd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/pwd.exe -------------------------------------------------------------------------------- /src/run8/pwdA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/pwdA.exe -------------------------------------------------------------------------------- /src/run8/randfile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/randfile.exe -------------------------------------------------------------------------------- /src/run8/semaphore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/semaphore.exe -------------------------------------------------------------------------------- /src/run8/serverCP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverCP.exe -------------------------------------------------------------------------------- /src/run8/serverNP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverNP.exe -------------------------------------------------------------------------------- /src/run8/serverNP_secure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverNP_secure.exe -------------------------------------------------------------------------------- /src/run8/serverSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverSK.exe -------------------------------------------------------------------------------- /src/run8/serverSKHA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverSKHA.exe -------------------------------------------------------------------------------- /src/run8/serverSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serverSKST.exe -------------------------------------------------------------------------------- /src/run8/serviceSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/serviceSK.exe -------------------------------------------------------------------------------- /src/run8/simplePC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/simplePC.exe -------------------------------------------------------------------------------- /src/run8/sortBT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortBT.exe -------------------------------------------------------------------------------- /src/run8/sortBTSR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortBTSR.exe -------------------------------------------------------------------------------- /src/run8/sortFL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortFL.exe -------------------------------------------------------------------------------- /src/run8/sortHP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortHP.exe -------------------------------------------------------------------------------- /src/run8/sortMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortMM.exe -------------------------------------------------------------------------------- /src/run8/sortMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/sortMT.exe -------------------------------------------------------------------------------- /src/run8/statsCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsCS.exe -------------------------------------------------------------------------------- /src/run8/statsIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsIN.exe -------------------------------------------------------------------------------- /src/run8/statsMX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsMX.exe -------------------------------------------------------------------------------- /src/run8/statsMX_ST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsMX_ST.exe -------------------------------------------------------------------------------- /src/run8/statsNS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsNS.exe -------------------------------------------------------------------------------- /src/run8/statsSRW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsSRW.exe -------------------------------------------------------------------------------- /src/run8/statsSRW_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/statsSRW_VTP.exe -------------------------------------------------------------------------------- /src/run8/tail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/tail.exe -------------------------------------------------------------------------------- /src/run8/testTHB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/testTHB.exe -------------------------------------------------------------------------------- /src/run8/timep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/timep.exe -------------------------------------------------------------------------------- /src/run8/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/touch.exe -------------------------------------------------------------------------------- /src/run8/toupper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/toupper.exe -------------------------------------------------------------------------------- /src/run8/version.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/version.exe -------------------------------------------------------------------------------- /src/run8/wcMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/wcMT.exe -------------------------------------------------------------------------------- /src/run8/wcMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/wcMTMM.exe -------------------------------------------------------------------------------- /src/run8/wcMT_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8/wcMT_VTP.exe -------------------------------------------------------------------------------- /src/run8_64/Excption.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/Excption.exe -------------------------------------------------------------------------------- /src/run8_64/FreeSpace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/FreeSpace.exe -------------------------------------------------------------------------------- /src/run8_64/JobObjectShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/JobObjectShell.exe -------------------------------------------------------------------------------- /src/run8_64/JobShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/JobShell.exe -------------------------------------------------------------------------------- /src/run8_64/MultiSem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/MultiSem.exe -------------------------------------------------------------------------------- /src/run8_64/RecordAccess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/RecordAccess.exe -------------------------------------------------------------------------------- /src/run8_64/RecordAccessMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/RecordAccessMM.exe -------------------------------------------------------------------------------- /src/run8_64/RecordAccessTestDataGenerate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/RecordAccessTestDataGenerate.exe -------------------------------------------------------------------------------- /src/run8_64/Redirect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/Redirect.exe -------------------------------------------------------------------------------- /src/run8_64/SendReceiveSKHA.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/SendReceiveSKHA.DLL -------------------------------------------------------------------------------- /src/run8_64/SendReceiveSKST_DLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/SendReceiveSKST_DLL.dll -------------------------------------------------------------------------------- /src/run8_64/ServiceShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ServiceShell.exe -------------------------------------------------------------------------------- /src/run8_64/SimpleService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/SimpleService.exe -------------------------------------------------------------------------------- /src/run8_64/SrvrBcst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/SrvrBcst.exe -------------------------------------------------------------------------------- /src/run8_64/TestLock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/TestLock.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStage.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStageCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStageCS.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStageCS_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStageCS_Sig.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStageCV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStageCV.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStageCancel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStageCancel.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStageSig_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStageSig_noSOAW.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStage_Sig.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStage_Sig.exe -------------------------------------------------------------------------------- /src/run8_64/ThreeStage_noSOAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ThreeStage_noSOAW.exe -------------------------------------------------------------------------------- /src/run8_64/TimeBeep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/TimeBeep.exe -------------------------------------------------------------------------------- /src/run8_64/TimedMutualExclusion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/TimedMutualExclusion.exe -------------------------------------------------------------------------------- /src/run8_64/TimedMutualExclusionSC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/TimedMutualExclusionSC.exe -------------------------------------------------------------------------------- /src/run8_64/Utility_4_0_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/Utility_4_0_64.dll -------------------------------------------------------------------------------- /src/run8_64/Utility_4_0_64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/Utility_4_0_64.exp -------------------------------------------------------------------------------- /src/run8_64/Utility_4_0_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/Utility_4_0_64.lib -------------------------------------------------------------------------------- /src/run8_64/cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cat.exe -------------------------------------------------------------------------------- /src/run8_64/catUNI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/catUNI.exe -------------------------------------------------------------------------------- /src/run8_64/cci.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cci.exe -------------------------------------------------------------------------------- /src/run8_64/cciEL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciEL.exe -------------------------------------------------------------------------------- /src/run8_64/cciEX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciEX.exe -------------------------------------------------------------------------------- /src/run8_64/cciLBSS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciLBSS.exe -------------------------------------------------------------------------------- /src/run8_64/cciMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciMM.exe -------------------------------------------------------------------------------- /src/run8_64/cciMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciMT.exe -------------------------------------------------------------------------------- /src/run8_64/cciMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciMTMM.exe -------------------------------------------------------------------------------- /src/run8_64/cciMT_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciMT_VTP.exe -------------------------------------------------------------------------------- /src/run8_64/cciOV.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cciOV.exe -------------------------------------------------------------------------------- /src/run8_64/cci_fDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cci_fDll.dll -------------------------------------------------------------------------------- /src/run8_64/cci_fDll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cci_fDll.exp -------------------------------------------------------------------------------- /src/run8_64/cci_fDll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cci_fDll.lib -------------------------------------------------------------------------------- /src/run8_64/cci_fMMDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cci_fMMDll.dll -------------------------------------------------------------------------------- /src/run8_64/chmodW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/chmodW.exe -------------------------------------------------------------------------------- /src/run8_64/clear.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/clear.exe -------------------------------------------------------------------------------- /src/run8_64/clientNP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/clientNP.exe -------------------------------------------------------------------------------- /src/run8_64/clientSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/clientSK.exe -------------------------------------------------------------------------------- /src/run8_64/clientSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/clientSKST.exe -------------------------------------------------------------------------------- /src/run8_64/commandsIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/commandsIP.dll -------------------------------------------------------------------------------- /src/run8_64/compMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/compMP.exe -------------------------------------------------------------------------------- /src/run8_64/cpC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cpC.exe -------------------------------------------------------------------------------- /src/run8_64/cpCF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cpCF.exe -------------------------------------------------------------------------------- /src/run8_64/cpUC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cpUC.exe -------------------------------------------------------------------------------- /src/run8_64/cpW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cpW.exe -------------------------------------------------------------------------------- /src/run8_64/cpWFA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/cpWFA.exe -------------------------------------------------------------------------------- /src/run8_64/ctrlc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/ctrlc.exe -------------------------------------------------------------------------------- /src/run8_64/eventPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/eventPC.exe -------------------------------------------------------------------------------- /src/run8_64/geonames.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/geonames.exe -------------------------------------------------------------------------------- /src/run8_64/getn.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/getn.exe -------------------------------------------------------------------------------- /src/run8_64/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/grep.exe -------------------------------------------------------------------------------- /src/run8_64/grepMP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/grepMP.exe -------------------------------------------------------------------------------- /src/run8_64/grepMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/grepMT.exe -------------------------------------------------------------------------------- /src/run8_64/lsFP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/lsFP.exe -------------------------------------------------------------------------------- /src/run8_64/lsReg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/lsReg.exe -------------------------------------------------------------------------------- /src/run8_64/lsW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/lsW.exe -------------------------------------------------------------------------------- /src/run8_64/msvcr70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/msvcr70.dll -------------------------------------------------------------------------------- /src/run8_64/pcstatsDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/pcstatsDLL.dll -------------------------------------------------------------------------------- /src/run8_64/pwd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/pwd.exe -------------------------------------------------------------------------------- /src/run8_64/pwdA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/pwdA.exe -------------------------------------------------------------------------------- /src/run8_64/randfile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/randfile.exe -------------------------------------------------------------------------------- /src/run8_64/semaphore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/semaphore.exe -------------------------------------------------------------------------------- /src/run8_64/serverCP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverCP.exe -------------------------------------------------------------------------------- /src/run8_64/serverNP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverNP.exe -------------------------------------------------------------------------------- /src/run8_64/serverNP_secure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverNP_secure.exe -------------------------------------------------------------------------------- /src/run8_64/serverSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverSK.exe -------------------------------------------------------------------------------- /src/run8_64/serverSKHA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverSKHA.exe -------------------------------------------------------------------------------- /src/run8_64/serverSKST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serverSKST.exe -------------------------------------------------------------------------------- /src/run8_64/serviceSK.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/serviceSK.exe -------------------------------------------------------------------------------- /src/run8_64/simplePC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/simplePC.exe -------------------------------------------------------------------------------- /src/run8_64/sortBT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortBT.exe -------------------------------------------------------------------------------- /src/run8_64/sortBTSR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortBTSR.exe -------------------------------------------------------------------------------- /src/run8_64/sortFL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortFL.exe -------------------------------------------------------------------------------- /src/run8_64/sortHP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortHP.exe -------------------------------------------------------------------------------- /src/run8_64/sortMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortMM.exe -------------------------------------------------------------------------------- /src/run8_64/sortMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/sortMT.exe -------------------------------------------------------------------------------- /src/run8_64/statsCS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsCS.exe -------------------------------------------------------------------------------- /src/run8_64/statsIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsIN.exe -------------------------------------------------------------------------------- /src/run8_64/statsMX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsMX.exe -------------------------------------------------------------------------------- /src/run8_64/statsMX_ST.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsMX_ST.exe -------------------------------------------------------------------------------- /src/run8_64/statsNS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsNS.exe -------------------------------------------------------------------------------- /src/run8_64/statsSRW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsSRW.exe -------------------------------------------------------------------------------- /src/run8_64/statsSRW_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/statsSRW_VTP.exe -------------------------------------------------------------------------------- /src/run8_64/tail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/tail.exe -------------------------------------------------------------------------------- /src/run8_64/testTHB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/testTHB.exe -------------------------------------------------------------------------------- /src/run8_64/timep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/timep.exe -------------------------------------------------------------------------------- /src/run8_64/touch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/touch.exe -------------------------------------------------------------------------------- /src/run8_64/toupper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/toupper.exe -------------------------------------------------------------------------------- /src/run8_64/version.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/version.exe -------------------------------------------------------------------------------- /src/run8_64/wcMT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/wcMT.exe -------------------------------------------------------------------------------- /src/run8_64/wcMTMM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/wcMTMM.exe -------------------------------------------------------------------------------- /src/run8_64/wcMT_VTP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-system-programming-4th-edition/44dbe0539e668bab865e2e03dd920a008b914a1c/src/run8_64/wcMT_VTP.exe --------------------------------------------------------------------------------