├── .gitignore ├── JPEGsnoop.sln ├── JPEGsnoop.vcproj ├── JPEGsnoop.vcxproj ├── JPEGsnoop.vcxproj.filters ├── LICENSE.txt ├── README-FILES.txt ├── README.md ├── VERSION.txt ├── makefile ├── res ├── JPEGsnoop.manifest ├── JPEGsnoop.rc2 ├── JPEGsnoopDoc.ico ├── Toolbar.bmp └── jpegsnoop-prog-icon1-novista.ico └── source ├── AboutDlg.cpp ├── AboutDlg.h ├── BatchDlg.cpp ├── BatchDlg.h ├── CntrItem.cpp ├── CntrItem.h ├── DbManageDlg.cpp ├── DbManageDlg.h ├── DbSigs.cpp ├── DbSigs.h ├── DbSubmitDlg.cpp ├── DbSubmitDlg.h ├── DecodeDetailDlg.cpp ├── DecodeDetailDlg.h ├── DecodeDicom.cpp ├── DecodeDicom.h ├── DecodeDicomTags.cpp ├── DecodePs.cpp ├── DecodePs.h ├── Dib.cpp ├── Dib.h ├── DocLog.cpp ├── DocLog.h ├── ExportDlg.cpp ├── ExportDlg.h ├── ExportTiffDlg.cpp ├── ExportTiffDlg.h ├── FileTiff.cpp ├── FileTiff.h ├── FolderDlg.cpp ├── FolderDlg.h ├── General.cpp ├── General.h ├── HyperlinkStatic.cpp ├── HyperlinkStatic.h ├── ImgDecode.cpp ├── ImgDecode.h ├── JPEGsnoop.cpp ├── JPEGsnoop.h ├── JPEGsnoop.rc ├── JPEGsnoopCore.cpp ├── JPEGsnoopCore.h ├── JPEGsnoopDoc.cpp ├── JPEGsnoopDoc.h ├── JPEGsnoopView.cpp ├── JPEGsnoopView.h ├── JPEGsnoopViewImg.cpp ├── JPEGsnoopViewImg.h ├── JfifDecode.cpp ├── JfifDecode.h ├── LookupDlg.cpp ├── LookupDlg.h ├── MainFrm.cpp ├── MainFrm.h ├── Md5.cpp ├── Md5.h ├── ModelessDlg.cpp ├── ModelessDlg.h ├── NoteDlg.cpp ├── NoteDlg.h ├── OffsetDlg.cpp ├── OffsetDlg.h ├── OverlayBufDlg.cpp ├── OverlayBufDlg.h ├── Registry.cpp ├── Registry.h ├── SettingsDlg.cpp ├── SettingsDlg.h ├── Signatures.inl ├── SnoopConfig.cpp ├── SnoopConfig.h ├── TermsDlg.cpp ├── TermsDlg.h ├── UpdateAvailDlg.cpp ├── UpdateAvailDlg.h ├── UrlString.cpp ├── UrlString.h ├── WindowBuf.cpp ├── WindowBuf.h ├── jpegsnoop.rc-1.5.2.japanese ├── resource.h ├── snoop.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/.gitignore -------------------------------------------------------------------------------- /JPEGsnoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/JPEGsnoop.sln -------------------------------------------------------------------------------- /JPEGsnoop.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/JPEGsnoop.vcproj -------------------------------------------------------------------------------- /JPEGsnoop.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/JPEGsnoop.vcxproj -------------------------------------------------------------------------------- /JPEGsnoop.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/JPEGsnoop.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-FILES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/README-FILES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/README.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/VERSION.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/makefile -------------------------------------------------------------------------------- /res/JPEGsnoop.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/res/JPEGsnoop.manifest -------------------------------------------------------------------------------- /res/JPEGsnoop.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/res/JPEGsnoop.rc2 -------------------------------------------------------------------------------- /res/JPEGsnoopDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/res/JPEGsnoopDoc.ico -------------------------------------------------------------------------------- /res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/res/Toolbar.bmp -------------------------------------------------------------------------------- /res/jpegsnoop-prog-icon1-novista.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/res/jpegsnoop-prog-icon1-novista.ico -------------------------------------------------------------------------------- /source/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/AboutDlg.cpp -------------------------------------------------------------------------------- /source/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/AboutDlg.h -------------------------------------------------------------------------------- /source/BatchDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/BatchDlg.cpp -------------------------------------------------------------------------------- /source/BatchDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/BatchDlg.h -------------------------------------------------------------------------------- /source/CntrItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/CntrItem.cpp -------------------------------------------------------------------------------- /source/CntrItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/CntrItem.h -------------------------------------------------------------------------------- /source/DbManageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbManageDlg.cpp -------------------------------------------------------------------------------- /source/DbManageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbManageDlg.h -------------------------------------------------------------------------------- /source/DbSigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbSigs.cpp -------------------------------------------------------------------------------- /source/DbSigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbSigs.h -------------------------------------------------------------------------------- /source/DbSubmitDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbSubmitDlg.cpp -------------------------------------------------------------------------------- /source/DbSubmitDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DbSubmitDlg.h -------------------------------------------------------------------------------- /source/DecodeDetailDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodeDetailDlg.cpp -------------------------------------------------------------------------------- /source/DecodeDetailDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodeDetailDlg.h -------------------------------------------------------------------------------- /source/DecodeDicom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodeDicom.cpp -------------------------------------------------------------------------------- /source/DecodeDicom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodeDicom.h -------------------------------------------------------------------------------- /source/DecodeDicomTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodeDicomTags.cpp -------------------------------------------------------------------------------- /source/DecodePs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodePs.cpp -------------------------------------------------------------------------------- /source/DecodePs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DecodePs.h -------------------------------------------------------------------------------- /source/Dib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Dib.cpp -------------------------------------------------------------------------------- /source/Dib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Dib.h -------------------------------------------------------------------------------- /source/DocLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DocLog.cpp -------------------------------------------------------------------------------- /source/DocLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/DocLog.h -------------------------------------------------------------------------------- /source/ExportDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ExportDlg.cpp -------------------------------------------------------------------------------- /source/ExportDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ExportDlg.h -------------------------------------------------------------------------------- /source/ExportTiffDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ExportTiffDlg.cpp -------------------------------------------------------------------------------- /source/ExportTiffDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ExportTiffDlg.h -------------------------------------------------------------------------------- /source/FileTiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/FileTiff.cpp -------------------------------------------------------------------------------- /source/FileTiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/FileTiff.h -------------------------------------------------------------------------------- /source/FolderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/FolderDlg.cpp -------------------------------------------------------------------------------- /source/FolderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/FolderDlg.h -------------------------------------------------------------------------------- /source/General.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/General.cpp -------------------------------------------------------------------------------- /source/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/General.h -------------------------------------------------------------------------------- /source/HyperlinkStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/HyperlinkStatic.cpp -------------------------------------------------------------------------------- /source/HyperlinkStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/HyperlinkStatic.h -------------------------------------------------------------------------------- /source/ImgDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ImgDecode.cpp -------------------------------------------------------------------------------- /source/ImgDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ImgDecode.h -------------------------------------------------------------------------------- /source/JPEGsnoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoop.cpp -------------------------------------------------------------------------------- /source/JPEGsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoop.h -------------------------------------------------------------------------------- /source/JPEGsnoop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoop.rc -------------------------------------------------------------------------------- /source/JPEGsnoopCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopCore.cpp -------------------------------------------------------------------------------- /source/JPEGsnoopCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopCore.h -------------------------------------------------------------------------------- /source/JPEGsnoopDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopDoc.cpp -------------------------------------------------------------------------------- /source/JPEGsnoopDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopDoc.h -------------------------------------------------------------------------------- /source/JPEGsnoopView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopView.cpp -------------------------------------------------------------------------------- /source/JPEGsnoopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopView.h -------------------------------------------------------------------------------- /source/JPEGsnoopViewImg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopViewImg.cpp -------------------------------------------------------------------------------- /source/JPEGsnoopViewImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JPEGsnoopViewImg.h -------------------------------------------------------------------------------- /source/JfifDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JfifDecode.cpp -------------------------------------------------------------------------------- /source/JfifDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/JfifDecode.h -------------------------------------------------------------------------------- /source/LookupDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/LookupDlg.cpp -------------------------------------------------------------------------------- /source/LookupDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/LookupDlg.h -------------------------------------------------------------------------------- /source/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/MainFrm.cpp -------------------------------------------------------------------------------- /source/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/MainFrm.h -------------------------------------------------------------------------------- /source/Md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Md5.cpp -------------------------------------------------------------------------------- /source/Md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Md5.h -------------------------------------------------------------------------------- /source/ModelessDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ModelessDlg.cpp -------------------------------------------------------------------------------- /source/ModelessDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/ModelessDlg.h -------------------------------------------------------------------------------- /source/NoteDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/NoteDlg.cpp -------------------------------------------------------------------------------- /source/NoteDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/NoteDlg.h -------------------------------------------------------------------------------- /source/OffsetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/OffsetDlg.cpp -------------------------------------------------------------------------------- /source/OffsetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/OffsetDlg.h -------------------------------------------------------------------------------- /source/OverlayBufDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/OverlayBufDlg.cpp -------------------------------------------------------------------------------- /source/OverlayBufDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/OverlayBufDlg.h -------------------------------------------------------------------------------- /source/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Registry.cpp -------------------------------------------------------------------------------- /source/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Registry.h -------------------------------------------------------------------------------- /source/SettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/SettingsDlg.cpp -------------------------------------------------------------------------------- /source/SettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/SettingsDlg.h -------------------------------------------------------------------------------- /source/Signatures.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/Signatures.inl -------------------------------------------------------------------------------- /source/SnoopConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/SnoopConfig.cpp -------------------------------------------------------------------------------- /source/SnoopConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/SnoopConfig.h -------------------------------------------------------------------------------- /source/TermsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/TermsDlg.cpp -------------------------------------------------------------------------------- /source/TermsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/TermsDlg.h -------------------------------------------------------------------------------- /source/UpdateAvailDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/UpdateAvailDlg.cpp -------------------------------------------------------------------------------- /source/UpdateAvailDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/UpdateAvailDlg.h -------------------------------------------------------------------------------- /source/UrlString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/UrlString.cpp -------------------------------------------------------------------------------- /source/UrlString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/UrlString.h -------------------------------------------------------------------------------- /source/WindowBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/WindowBuf.cpp -------------------------------------------------------------------------------- /source/WindowBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/WindowBuf.h -------------------------------------------------------------------------------- /source/jpegsnoop.rc-1.5.2.japanese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/jpegsnoop.rc-1.5.2.japanese -------------------------------------------------------------------------------- /source/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/resource.h -------------------------------------------------------------------------------- /source/snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/snoop.h -------------------------------------------------------------------------------- /source/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/stdafx.cpp -------------------------------------------------------------------------------- /source/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImpulseAdventure/JPEGsnoop/HEAD/source/stdafx.h --------------------------------------------------------------------------------