├── .gitignore ├── LICENCE ├── README.MD └── src ├── 01-ErrorShow ├── 01-ErrorShow.vcproj ├── 01-ErrorShow.vcxproj ├── ErrorShow.cpp ├── ErrorShow.ico ├── ErrorShow.rc └── Resource.h ├── 03-Singleton ├── 03-Singleton.vcproj ├── 03-Singleton.vcxproj ├── Resource.h ├── Singleton.cpp ├── Singleton.ico └── Singleton.rc ├── 04-ProcessInfo ├── 04-ProcessInfo.vcproj ├── 04-ProcessInfo.vcxproj ├── ProcessInfo.cpp ├── ProcessInfo.ico ├── ProcessInfo.rc └── Resource.h ├── 05-JobLab ├── 05-JobLab.vcproj ├── 05-JobLab.vcxproj ├── Job.h ├── JobLab.cpp ├── JobLab.ico ├── JobLab.rc └── Resource.h ├── 07-SchedLab ├── 07-SchedLab.vcproj ├── 07-SchedLab.vcxproj ├── Resource.h ├── SchedLab.cpp ├── SchedLab.ico └── SchedLab.rc ├── 08-Queue ├── 08-Queue.vcproj ├── 08-Queue.vcxproj ├── Queue.cpp ├── Queue.h ├── Queue.ico ├── Queue.rc └── Resource.h ├── 08-UserSyncCompare ├── 08-UserSyncCompare.vcproj ├── 08-UserSyncCompare.vcxproj └── UserSyncCompare.cpp ├── 09-BadLock ├── 09-BadLock.vcproj ├── 09-BadLock.vcxproj └── BadLock.cpp ├── 09-Handshake ├── 09-Handshake.vcproj ├── 09-Handshake.vcxproj ├── Handshake.cpp ├── Handshake.ico ├── Handshake.rc └── Resource.h ├── 09-LockCop ├── 09-LockCop.vcproj ├── 09-LockCop.vcxproj ├── ChainParser.h ├── LockCop.cpp ├── LockCop.ico ├── LockCop.rc └── Resource.h ├── 09-Queue ├── 09-Queue.vcproj ├── 09-Queue.vcxproj ├── Queue.cpp ├── Queue.ico ├── Queue.rc └── Resource.h ├── 10-FileCopy ├── 10-FileCopy.vcproj ├── 10-FileCopy.vcxproj ├── FileCopy.cpp ├── FileCopy.ico ├── FileCopy.rc └── Resource.h ├── 11-Batch ├── 11-Batch.vcproj ├── 11-Batch.vcxproj ├── Batch.cpp ├── Batch.h ├── Batch.ico ├── Batch.rc └── Resource.h ├── 11-PrivateBatch ├── 11-PrivateBatch.vcproj ├── 11-PrivateBatch.vcxproj ├── PrivateBatch.cpp ├── PrivateBatch.h ├── PrivateBatch.ico ├── PrivateBatch.rc └── Resource.h ├── 11-TimedMsgBox ├── 11-TimedMsgBox.vcproj ├── 11-TimedMsgBox.vcxproj ├── Resource.h ├── TimedMsgBox.cpp ├── TimedMsgBox.ico └── TimedMsgBox.rc ├── 12-Counter ├── 12-Counter.vcproj ├── 12-Counter.vcxproj ├── Counter.cpp ├── Counter.ico ├── Counter.rc └── Resource.h ├── 14-SysInfo ├── 14-SysInfo.vcproj ├── 14-SysInfo.vcxproj ├── Resource.h ├── SysInfo.cpp ├── SysInfo.ico └── SysInfo.rc ├── 14-VMMap ├── 14-VMMap.vcproj ├── 14-VMMap.vcxproj ├── Resource.h ├── VMMap.cpp ├── VMMap.ico ├── VMMap.rc ├── VMQuery.cpp └── VMQuery.h ├── 14-VMStat ├── 14-VMStat.vcproj ├── 14-VMStat.vcxproj ├── Resource.h ├── VMStat.cpp ├── VMStat.ico └── VMStat.rc ├── 15-AWE ├── 15-AWE.vcproj ├── 15-AWE.vcxproj ├── AWE.cpp ├── AWE.ico ├── AWE.rc ├── AddrWindow.h └── Resource.h ├── 15-MemReset ├── 15-MemReset.vcproj ├── 15-MemReset.vcxproj ├── MemReset.cpp ├── MemReset.ico ├── MemReset.rc └── Resource.h ├── 15-VMAlloc ├── 15-VMAlloc.vcproj ├── 15-VMAlloc.vcxproj ├── Resource.h ├── VMAlloc.cpp ├── VMAlloc.ico └── VMAlloc.rc ├── 16-Summation ├── 16-Summation.vcproj ├── 16-Summation.vcxproj ├── Resource.h ├── Summation.cpp ├── Summation.ico └── Summation.rc ├── 17-AppInst ├── 17-AppInst.vcproj ├── 17-AppInst.vcxproj ├── AppInst.cpp ├── AppInst.ico ├── AppInst.rc └── Resource.h ├── 17-FileRev ├── 17-FileRev.vcproj ├── 17-FileRev.vcxproj ├── FileRev.cpp ├── FileRev.ico ├── FileRev.rc └── Resource.h ├── 17-MMFShare ├── 17-MMFShare.vcproj ├── 17-MMFShare.vcxproj ├── MMFShare.cpp ├── MMFShare.ico ├── MMFShare.rc └── Resource.h ├── 17-MMFSparse ├── 17-MMFSparse.vcproj ├── 17-MMFSparse.vcxproj ├── MMFSparse ├── MMFSparse.cpp ├── MMFSparse.ico ├── MMFSparse.rc ├── Resource.h └── SparseStream.h ├── 20-DelayLoadApp ├── 20-DelayLoadApp.vcproj ├── 20-DelayLoadApp.vcxproj ├── DelayLoadApp.cpp ├── DelayLoadApp.ico ├── DelayLoadApp.rc └── Resource.h ├── 20-DelayLoadLib ├── 20-DelayLoadLib.vcproj ├── 20-DelayLoadLib.vcxproj ├── DelayLoadLib.cpp └── DelayLoadLib.h ├── 22-DIPS ├── 22-DIPS.vcproj ├── 22-DIPS.vcxproj ├── DIPS.cpp ├── DIPS.ico ├── DIPS.rc └── Resource.h ├── 22-DIPSLib ├── 22-DIPSLib.vcproj ├── 22-DIPSLib.vcxproj ├── DIPSLib.cpp ├── DIPSLib.h ├── DIPSLib.rc └── Resource.h ├── 22-ImgWalk ├── 22-ImgWalk.vcproj ├── 22-ImgWalk.vcxproj └── ImgWalk.cpp ├── 22-InjLib ├── 22-InjLib.vcproj ├── 22-InjLib.vcxproj ├── InjLib.cpp ├── InjLib.ico ├── InjLib.rc └── Resource.h ├── 22-LastMsgBoxInfo ├── 22-LastMsgBoxInfo.vcproj ├── 22-LastMsgBoxInfo.vcxproj ├── LastMsgBoxInfo.cpp ├── LastMsgBoxInfo.ico ├── LastMsgBoxInfo.rc └── Resource.h ├── 22-LastMsgBoxInfoLib ├── 22-LastMsgBoxInfoLib.vcproj ├── 22-LastMsgBoxInfoLib.vcxproj ├── APIHook.cpp ├── APIHook.h ├── LastMsgBoxInfoLib.cpp └── LastMsgBoxInfoLib.h ├── 23-SEHTerm ├── 23-SEHTerm.vcproj ├── 23-SEHTerm.vcxproj ├── Resource.h ├── SEHTerm.cpp ├── SEHTerm.ico └── SEHTerm.rc ├── 25-Spreadsheet ├── 25-Spreadsheet.vcproj ├── 25-Spreadsheet.vcxproj ├── Resource.h ├── Spreadsheet.cpp ├── Spreadsheet.ico ├── Spreadsheet.rc └── VMArray.h ├── 26-CustomizedWER ├── 26-CustomizedWER.vcproj ├── 26-CustomizedWER.vcxproj ├── CustomizedWER.cpp ├── CustomizedWER.h ├── CustomizedWER.ico ├── CustomizedWER.rc └── Resource.h ├── Backup └── Windows via C++.sln ├── Clean.bat ├── CommonFiles ├── CmnHdr.h ├── EnsureCleanup.h ├── IoCompletionPort.h ├── Toolhelp.h └── WaitChainTraversal.h └── Windows via C++.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/LICENCE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/README.MD -------------------------------------------------------------------------------- /src/01-ErrorShow/01-ErrorShow.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/01-ErrorShow.vcproj -------------------------------------------------------------------------------- /src/01-ErrorShow/01-ErrorShow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/01-ErrorShow.vcxproj -------------------------------------------------------------------------------- /src/01-ErrorShow/ErrorShow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/ErrorShow.cpp -------------------------------------------------------------------------------- /src/01-ErrorShow/ErrorShow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/ErrorShow.ico -------------------------------------------------------------------------------- /src/01-ErrorShow/ErrorShow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/ErrorShow.rc -------------------------------------------------------------------------------- /src/01-ErrorShow/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/01-ErrorShow/Resource.h -------------------------------------------------------------------------------- /src/03-Singleton/03-Singleton.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/03-Singleton.vcproj -------------------------------------------------------------------------------- /src/03-Singleton/03-Singleton.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/03-Singleton.vcxproj -------------------------------------------------------------------------------- /src/03-Singleton/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/Resource.h -------------------------------------------------------------------------------- /src/03-Singleton/Singleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/Singleton.cpp -------------------------------------------------------------------------------- /src/03-Singleton/Singleton.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/Singleton.ico -------------------------------------------------------------------------------- /src/03-Singleton/Singleton.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/03-Singleton/Singleton.rc -------------------------------------------------------------------------------- /src/04-ProcessInfo/04-ProcessInfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/04-ProcessInfo.vcproj -------------------------------------------------------------------------------- /src/04-ProcessInfo/04-ProcessInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/04-ProcessInfo.vcxproj -------------------------------------------------------------------------------- /src/04-ProcessInfo/ProcessInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/ProcessInfo.cpp -------------------------------------------------------------------------------- /src/04-ProcessInfo/ProcessInfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/ProcessInfo.ico -------------------------------------------------------------------------------- /src/04-ProcessInfo/ProcessInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/ProcessInfo.rc -------------------------------------------------------------------------------- /src/04-ProcessInfo/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/04-ProcessInfo/Resource.h -------------------------------------------------------------------------------- /src/05-JobLab/05-JobLab.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/05-JobLab.vcproj -------------------------------------------------------------------------------- /src/05-JobLab/05-JobLab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/05-JobLab.vcxproj -------------------------------------------------------------------------------- /src/05-JobLab/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/Job.h -------------------------------------------------------------------------------- /src/05-JobLab/JobLab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/JobLab.cpp -------------------------------------------------------------------------------- /src/05-JobLab/JobLab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/JobLab.ico -------------------------------------------------------------------------------- /src/05-JobLab/JobLab.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/JobLab.rc -------------------------------------------------------------------------------- /src/05-JobLab/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/05-JobLab/Resource.h -------------------------------------------------------------------------------- /src/07-SchedLab/07-SchedLab.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/07-SchedLab.vcproj -------------------------------------------------------------------------------- /src/07-SchedLab/07-SchedLab.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/07-SchedLab.vcxproj -------------------------------------------------------------------------------- /src/07-SchedLab/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/Resource.h -------------------------------------------------------------------------------- /src/07-SchedLab/SchedLab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/SchedLab.cpp -------------------------------------------------------------------------------- /src/07-SchedLab/SchedLab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/SchedLab.ico -------------------------------------------------------------------------------- /src/07-SchedLab/SchedLab.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/07-SchedLab/SchedLab.rc -------------------------------------------------------------------------------- /src/08-Queue/08-Queue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/08-Queue.vcproj -------------------------------------------------------------------------------- /src/08-Queue/08-Queue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/08-Queue.vcxproj -------------------------------------------------------------------------------- /src/08-Queue/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/Queue.cpp -------------------------------------------------------------------------------- /src/08-Queue/Queue.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /src/08-Queue/Queue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/Queue.ico -------------------------------------------------------------------------------- /src/08-Queue/Queue.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/Queue.rc -------------------------------------------------------------------------------- /src/08-Queue/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-Queue/Resource.h -------------------------------------------------------------------------------- /src/08-UserSyncCompare/08-UserSyncCompare.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-UserSyncCompare/08-UserSyncCompare.vcproj -------------------------------------------------------------------------------- /src/08-UserSyncCompare/08-UserSyncCompare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-UserSyncCompare/08-UserSyncCompare.vcxproj -------------------------------------------------------------------------------- /src/08-UserSyncCompare/UserSyncCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/08-UserSyncCompare/UserSyncCompare.cpp -------------------------------------------------------------------------------- /src/09-BadLock/09-BadLock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-BadLock/09-BadLock.vcproj -------------------------------------------------------------------------------- /src/09-BadLock/09-BadLock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-BadLock/09-BadLock.vcxproj -------------------------------------------------------------------------------- /src/09-BadLock/BadLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-BadLock/BadLock.cpp -------------------------------------------------------------------------------- /src/09-Handshake/09-Handshake.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/09-Handshake.vcproj -------------------------------------------------------------------------------- /src/09-Handshake/09-Handshake.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/09-Handshake.vcxproj -------------------------------------------------------------------------------- /src/09-Handshake/Handshake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/Handshake.cpp -------------------------------------------------------------------------------- /src/09-Handshake/Handshake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/Handshake.ico -------------------------------------------------------------------------------- /src/09-Handshake/Handshake.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/Handshake.rc -------------------------------------------------------------------------------- /src/09-Handshake/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Handshake/Resource.h -------------------------------------------------------------------------------- /src/09-LockCop/09-LockCop.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/09-LockCop.vcproj -------------------------------------------------------------------------------- /src/09-LockCop/09-LockCop.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/09-LockCop.vcxproj -------------------------------------------------------------------------------- /src/09-LockCop/ChainParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/ChainParser.h -------------------------------------------------------------------------------- /src/09-LockCop/LockCop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/LockCop.cpp -------------------------------------------------------------------------------- /src/09-LockCop/LockCop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/LockCop.ico -------------------------------------------------------------------------------- /src/09-LockCop/LockCop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/LockCop.rc -------------------------------------------------------------------------------- /src/09-LockCop/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-LockCop/Resource.h -------------------------------------------------------------------------------- /src/09-Queue/09-Queue.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/09-Queue.vcproj -------------------------------------------------------------------------------- /src/09-Queue/09-Queue.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/09-Queue.vcxproj -------------------------------------------------------------------------------- /src/09-Queue/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/Queue.cpp -------------------------------------------------------------------------------- /src/09-Queue/Queue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/Queue.ico -------------------------------------------------------------------------------- /src/09-Queue/Queue.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/Queue.rc -------------------------------------------------------------------------------- /src/09-Queue/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/09-Queue/Resource.h -------------------------------------------------------------------------------- /src/10-FileCopy/10-FileCopy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/10-FileCopy.vcproj -------------------------------------------------------------------------------- /src/10-FileCopy/10-FileCopy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/10-FileCopy.vcxproj -------------------------------------------------------------------------------- /src/10-FileCopy/FileCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/FileCopy.cpp -------------------------------------------------------------------------------- /src/10-FileCopy/FileCopy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/FileCopy.ico -------------------------------------------------------------------------------- /src/10-FileCopy/FileCopy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/FileCopy.rc -------------------------------------------------------------------------------- /src/10-FileCopy/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/10-FileCopy/Resource.h -------------------------------------------------------------------------------- /src/11-Batch/11-Batch.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/11-Batch.vcproj -------------------------------------------------------------------------------- /src/11-Batch/11-Batch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/11-Batch.vcxproj -------------------------------------------------------------------------------- /src/11-Batch/Batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/Batch.cpp -------------------------------------------------------------------------------- /src/11-Batch/Batch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /src/11-Batch/Batch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/Batch.ico -------------------------------------------------------------------------------- /src/11-Batch/Batch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/Batch.rc -------------------------------------------------------------------------------- /src/11-Batch/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-Batch/Resource.h -------------------------------------------------------------------------------- /src/11-PrivateBatch/11-PrivateBatch.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/11-PrivateBatch.vcproj -------------------------------------------------------------------------------- /src/11-PrivateBatch/11-PrivateBatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/11-PrivateBatch.vcxproj -------------------------------------------------------------------------------- /src/11-PrivateBatch/PrivateBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/PrivateBatch.cpp -------------------------------------------------------------------------------- /src/11-PrivateBatch/PrivateBatch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /src/11-PrivateBatch/PrivateBatch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/PrivateBatch.ico -------------------------------------------------------------------------------- /src/11-PrivateBatch/PrivateBatch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/PrivateBatch.rc -------------------------------------------------------------------------------- /src/11-PrivateBatch/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-PrivateBatch/Resource.h -------------------------------------------------------------------------------- /src/11-TimedMsgBox/11-TimedMsgBox.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/11-TimedMsgBox.vcproj -------------------------------------------------------------------------------- /src/11-TimedMsgBox/11-TimedMsgBox.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/11-TimedMsgBox.vcxproj -------------------------------------------------------------------------------- /src/11-TimedMsgBox/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/Resource.h -------------------------------------------------------------------------------- /src/11-TimedMsgBox/TimedMsgBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/TimedMsgBox.cpp -------------------------------------------------------------------------------- /src/11-TimedMsgBox/TimedMsgBox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/TimedMsgBox.ico -------------------------------------------------------------------------------- /src/11-TimedMsgBox/TimedMsgBox.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/11-TimedMsgBox/TimedMsgBox.rc -------------------------------------------------------------------------------- /src/12-Counter/12-Counter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/12-Counter.vcproj -------------------------------------------------------------------------------- /src/12-Counter/12-Counter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/12-Counter.vcxproj -------------------------------------------------------------------------------- /src/12-Counter/Counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/Counter.cpp -------------------------------------------------------------------------------- /src/12-Counter/Counter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/Counter.ico -------------------------------------------------------------------------------- /src/12-Counter/Counter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/Counter.rc -------------------------------------------------------------------------------- /src/12-Counter/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/12-Counter/Resource.h -------------------------------------------------------------------------------- /src/14-SysInfo/14-SysInfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/14-SysInfo.vcproj -------------------------------------------------------------------------------- /src/14-SysInfo/14-SysInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/14-SysInfo.vcxproj -------------------------------------------------------------------------------- /src/14-SysInfo/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/Resource.h -------------------------------------------------------------------------------- /src/14-SysInfo/SysInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/SysInfo.cpp -------------------------------------------------------------------------------- /src/14-SysInfo/SysInfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/SysInfo.ico -------------------------------------------------------------------------------- /src/14-SysInfo/SysInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-SysInfo/SysInfo.rc -------------------------------------------------------------------------------- /src/14-VMMap/14-VMMap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/14-VMMap.vcproj -------------------------------------------------------------------------------- /src/14-VMMap/14-VMMap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/14-VMMap.vcxproj -------------------------------------------------------------------------------- /src/14-VMMap/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/Resource.h -------------------------------------------------------------------------------- /src/14-VMMap/VMMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/VMMap.cpp -------------------------------------------------------------------------------- /src/14-VMMap/VMMap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/VMMap.ico -------------------------------------------------------------------------------- /src/14-VMMap/VMMap.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/VMMap.rc -------------------------------------------------------------------------------- /src/14-VMMap/VMQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/VMQuery.cpp -------------------------------------------------------------------------------- /src/14-VMMap/VMQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMMap/VMQuery.h -------------------------------------------------------------------------------- /src/14-VMStat/14-VMStat.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/14-VMStat.vcproj -------------------------------------------------------------------------------- /src/14-VMStat/14-VMStat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/14-VMStat.vcxproj -------------------------------------------------------------------------------- /src/14-VMStat/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/Resource.h -------------------------------------------------------------------------------- /src/14-VMStat/VMStat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/VMStat.cpp -------------------------------------------------------------------------------- /src/14-VMStat/VMStat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/VMStat.ico -------------------------------------------------------------------------------- /src/14-VMStat/VMStat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/14-VMStat/VMStat.rc -------------------------------------------------------------------------------- /src/15-AWE/15-AWE.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/15-AWE.vcproj -------------------------------------------------------------------------------- /src/15-AWE/15-AWE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/15-AWE.vcxproj -------------------------------------------------------------------------------- /src/15-AWE/AWE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/AWE.cpp -------------------------------------------------------------------------------- /src/15-AWE/AWE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/AWE.ico -------------------------------------------------------------------------------- /src/15-AWE/AWE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/AWE.rc -------------------------------------------------------------------------------- /src/15-AWE/AddrWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/AddrWindow.h -------------------------------------------------------------------------------- /src/15-AWE/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-AWE/Resource.h -------------------------------------------------------------------------------- /src/15-MemReset/15-MemReset.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/15-MemReset.vcproj -------------------------------------------------------------------------------- /src/15-MemReset/15-MemReset.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/15-MemReset.vcxproj -------------------------------------------------------------------------------- /src/15-MemReset/MemReset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/MemReset.cpp -------------------------------------------------------------------------------- /src/15-MemReset/MemReset.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/MemReset.ico -------------------------------------------------------------------------------- /src/15-MemReset/MemReset.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/MemReset.rc -------------------------------------------------------------------------------- /src/15-MemReset/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-MemReset/Resource.h -------------------------------------------------------------------------------- /src/15-VMAlloc/15-VMAlloc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/15-VMAlloc.vcproj -------------------------------------------------------------------------------- /src/15-VMAlloc/15-VMAlloc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/15-VMAlloc.vcxproj -------------------------------------------------------------------------------- /src/15-VMAlloc/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/Resource.h -------------------------------------------------------------------------------- /src/15-VMAlloc/VMAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/VMAlloc.cpp -------------------------------------------------------------------------------- /src/15-VMAlloc/VMAlloc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/VMAlloc.ico -------------------------------------------------------------------------------- /src/15-VMAlloc/VMAlloc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/15-VMAlloc/VMAlloc.rc -------------------------------------------------------------------------------- /src/16-Summation/16-Summation.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/16-Summation.vcproj -------------------------------------------------------------------------------- /src/16-Summation/16-Summation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/16-Summation.vcxproj -------------------------------------------------------------------------------- /src/16-Summation/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/Resource.h -------------------------------------------------------------------------------- /src/16-Summation/Summation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/Summation.cpp -------------------------------------------------------------------------------- /src/16-Summation/Summation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/Summation.ico -------------------------------------------------------------------------------- /src/16-Summation/Summation.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/16-Summation/Summation.rc -------------------------------------------------------------------------------- /src/17-AppInst/17-AppInst.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/17-AppInst.vcproj -------------------------------------------------------------------------------- /src/17-AppInst/17-AppInst.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/17-AppInst.vcxproj -------------------------------------------------------------------------------- /src/17-AppInst/AppInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/AppInst.cpp -------------------------------------------------------------------------------- /src/17-AppInst/AppInst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/AppInst.ico -------------------------------------------------------------------------------- /src/17-AppInst/AppInst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/AppInst.rc -------------------------------------------------------------------------------- /src/17-AppInst/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-AppInst/Resource.h -------------------------------------------------------------------------------- /src/17-FileRev/17-FileRev.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/17-FileRev.vcproj -------------------------------------------------------------------------------- /src/17-FileRev/17-FileRev.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/17-FileRev.vcxproj -------------------------------------------------------------------------------- /src/17-FileRev/FileRev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/FileRev.cpp -------------------------------------------------------------------------------- /src/17-FileRev/FileRev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/FileRev.ico -------------------------------------------------------------------------------- /src/17-FileRev/FileRev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/FileRev.rc -------------------------------------------------------------------------------- /src/17-FileRev/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-FileRev/Resource.h -------------------------------------------------------------------------------- /src/17-MMFShare/17-MMFShare.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/17-MMFShare.vcproj -------------------------------------------------------------------------------- /src/17-MMFShare/17-MMFShare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/17-MMFShare.vcxproj -------------------------------------------------------------------------------- /src/17-MMFShare/MMFShare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/MMFShare.cpp -------------------------------------------------------------------------------- /src/17-MMFShare/MMFShare.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/MMFShare.ico -------------------------------------------------------------------------------- /src/17-MMFShare/MMFShare.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/MMFShare.rc -------------------------------------------------------------------------------- /src/17-MMFShare/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFShare/Resource.h -------------------------------------------------------------------------------- /src/17-MMFSparse/17-MMFSparse.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/17-MMFSparse.vcproj -------------------------------------------------------------------------------- /src/17-MMFSparse/17-MMFSparse.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/17-MMFSparse.vcxproj -------------------------------------------------------------------------------- /src/17-MMFSparse/MMFSparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/MMFSparse -------------------------------------------------------------------------------- /src/17-MMFSparse/MMFSparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/MMFSparse.cpp -------------------------------------------------------------------------------- /src/17-MMFSparse/MMFSparse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/MMFSparse.ico -------------------------------------------------------------------------------- /src/17-MMFSparse/MMFSparse.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/MMFSparse.rc -------------------------------------------------------------------------------- /src/17-MMFSparse/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/Resource.h -------------------------------------------------------------------------------- /src/17-MMFSparse/SparseStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/17-MMFSparse/SparseStream.h -------------------------------------------------------------------------------- /src/20-DelayLoadApp/20-DelayLoadApp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/20-DelayLoadApp.vcproj -------------------------------------------------------------------------------- /src/20-DelayLoadApp/20-DelayLoadApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/20-DelayLoadApp.vcxproj -------------------------------------------------------------------------------- /src/20-DelayLoadApp/DelayLoadApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/DelayLoadApp.cpp -------------------------------------------------------------------------------- /src/20-DelayLoadApp/DelayLoadApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/DelayLoadApp.ico -------------------------------------------------------------------------------- /src/20-DelayLoadApp/DelayLoadApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/DelayLoadApp.rc -------------------------------------------------------------------------------- /src/20-DelayLoadApp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadApp/Resource.h -------------------------------------------------------------------------------- /src/20-DelayLoadLib/20-DelayLoadLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadLib/20-DelayLoadLib.vcproj -------------------------------------------------------------------------------- /src/20-DelayLoadLib/20-DelayLoadLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadLib/20-DelayLoadLib.vcxproj -------------------------------------------------------------------------------- /src/20-DelayLoadLib/DelayLoadLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadLib/DelayLoadLib.cpp -------------------------------------------------------------------------------- /src/20-DelayLoadLib/DelayLoadLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/20-DelayLoadLib/DelayLoadLib.h -------------------------------------------------------------------------------- /src/22-DIPS/22-DIPS.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/22-DIPS.vcproj -------------------------------------------------------------------------------- /src/22-DIPS/22-DIPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/22-DIPS.vcxproj -------------------------------------------------------------------------------- /src/22-DIPS/DIPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/DIPS.cpp -------------------------------------------------------------------------------- /src/22-DIPS/DIPS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/DIPS.ico -------------------------------------------------------------------------------- /src/22-DIPS/DIPS.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/DIPS.rc -------------------------------------------------------------------------------- /src/22-DIPS/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPS/Resource.h -------------------------------------------------------------------------------- /src/22-DIPSLib/22-DIPSLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/22-DIPSLib.vcproj -------------------------------------------------------------------------------- /src/22-DIPSLib/22-DIPSLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/22-DIPSLib.vcxproj -------------------------------------------------------------------------------- /src/22-DIPSLib/DIPSLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/DIPSLib.cpp -------------------------------------------------------------------------------- /src/22-DIPSLib/DIPSLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/DIPSLib.h -------------------------------------------------------------------------------- /src/22-DIPSLib/DIPSLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/DIPSLib.rc -------------------------------------------------------------------------------- /src/22-DIPSLib/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-DIPSLib/Resource.h -------------------------------------------------------------------------------- /src/22-ImgWalk/22-ImgWalk.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-ImgWalk/22-ImgWalk.vcproj -------------------------------------------------------------------------------- /src/22-ImgWalk/22-ImgWalk.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-ImgWalk/22-ImgWalk.vcxproj -------------------------------------------------------------------------------- /src/22-ImgWalk/ImgWalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-ImgWalk/ImgWalk.cpp -------------------------------------------------------------------------------- /src/22-InjLib/22-InjLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/22-InjLib.vcproj -------------------------------------------------------------------------------- /src/22-InjLib/22-InjLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/22-InjLib.vcxproj -------------------------------------------------------------------------------- /src/22-InjLib/InjLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/InjLib.cpp -------------------------------------------------------------------------------- /src/22-InjLib/InjLib.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/InjLib.ico -------------------------------------------------------------------------------- /src/22-InjLib/InjLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/InjLib.rc -------------------------------------------------------------------------------- /src/22-InjLib/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-InjLib/Resource.h -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/22-LastMsgBoxInfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/22-LastMsgBoxInfo.vcproj -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/22-LastMsgBoxInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/22-LastMsgBoxInfo.vcxproj -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/LastMsgBoxInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/LastMsgBoxInfo.cpp -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/LastMsgBoxInfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/LastMsgBoxInfo.ico -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/LastMsgBoxInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/LastMsgBoxInfo.rc -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfo/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfo/Resource.h -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/22-LastMsgBoxInfoLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/22-LastMsgBoxInfoLib.vcproj -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/22-LastMsgBoxInfoLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/22-LastMsgBoxInfoLib.vcxproj -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/APIHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/APIHook.cpp -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/APIHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/APIHook.h -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/LastMsgBoxInfoLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/LastMsgBoxInfoLib.cpp -------------------------------------------------------------------------------- /src/22-LastMsgBoxInfoLib/LastMsgBoxInfoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/22-LastMsgBoxInfoLib/LastMsgBoxInfoLib.h -------------------------------------------------------------------------------- /src/23-SEHTerm/23-SEHTerm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/23-SEHTerm.vcproj -------------------------------------------------------------------------------- /src/23-SEHTerm/23-SEHTerm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/23-SEHTerm.vcxproj -------------------------------------------------------------------------------- /src/23-SEHTerm/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/Resource.h -------------------------------------------------------------------------------- /src/23-SEHTerm/SEHTerm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/SEHTerm.cpp -------------------------------------------------------------------------------- /src/23-SEHTerm/SEHTerm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/SEHTerm.ico -------------------------------------------------------------------------------- /src/23-SEHTerm/SEHTerm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/23-SEHTerm/SEHTerm.rc -------------------------------------------------------------------------------- /src/25-Spreadsheet/25-Spreadsheet.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/25-Spreadsheet.vcproj -------------------------------------------------------------------------------- /src/25-Spreadsheet/25-Spreadsheet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/25-Spreadsheet.vcxproj -------------------------------------------------------------------------------- /src/25-Spreadsheet/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/Resource.h -------------------------------------------------------------------------------- /src/25-Spreadsheet/Spreadsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/Spreadsheet.cpp -------------------------------------------------------------------------------- /src/25-Spreadsheet/Spreadsheet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/Spreadsheet.ico -------------------------------------------------------------------------------- /src/25-Spreadsheet/Spreadsheet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/Spreadsheet.rc -------------------------------------------------------------------------------- /src/25-Spreadsheet/VMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/25-Spreadsheet/VMArray.h -------------------------------------------------------------------------------- /src/26-CustomizedWER/26-CustomizedWER.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/26-CustomizedWER.vcproj -------------------------------------------------------------------------------- /src/26-CustomizedWER/26-CustomizedWER.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/26-CustomizedWER.vcxproj -------------------------------------------------------------------------------- /src/26-CustomizedWER/CustomizedWER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/CustomizedWER.cpp -------------------------------------------------------------------------------- /src/26-CustomizedWER/CustomizedWER.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /src/26-CustomizedWER/CustomizedWER.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/CustomizedWER.ico -------------------------------------------------------------------------------- /src/26-CustomizedWER/CustomizedWER.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/CustomizedWER.rc -------------------------------------------------------------------------------- /src/26-CustomizedWER/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/26-CustomizedWER/Resource.h -------------------------------------------------------------------------------- /src/Backup/Windows via C++.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/Backup/Windows via C++.sln -------------------------------------------------------------------------------- /src/Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/Clean.bat -------------------------------------------------------------------------------- /src/CommonFiles/CmnHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/CommonFiles/CmnHdr.h -------------------------------------------------------------------------------- /src/CommonFiles/EnsureCleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/CommonFiles/EnsureCleanup.h -------------------------------------------------------------------------------- /src/CommonFiles/IoCompletionPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/CommonFiles/IoCompletionPort.h -------------------------------------------------------------------------------- /src/CommonFiles/Toolhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/CommonFiles/Toolhelp.h -------------------------------------------------------------------------------- /src/CommonFiles/WaitChainTraversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/CommonFiles/WaitChainTraversal.h -------------------------------------------------------------------------------- /src/Windows via C++.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yottaawesome/windows-via-c-cpp/HEAD/src/Windows via C++.sln --------------------------------------------------------------------------------