├── .gitattributes ├── .gitignore ├── Distributed Zip ├── Benchmark.au3 ├── Changelog.txt ├── Credits.txt ├── FastFind 2_2.zip ├── FastFind.au3 ├── FastFind.chm ├── FastFind.dll ├── FastFind64.dll ├── FastFind_Demo.au3 └── Integration │ ├── FastFind.h │ └── FastFindDLL.def ├── FF help ├── Examples │ └── HelpFile │ │ ├── FFAddColor.au3 │ │ ├── FFBestSpot.au3 │ │ ├── FFNearestPixel.au3 │ │ ├── FFNearestSpot.au3 │ │ ├── FFSetDebugMode.au3 │ │ ├── FFSnapShot.au3 │ │ ├── FastFind.au3 │ │ ├── FastFind.dll │ │ ├── FastFind64.dll │ │ └── TRACER.TXT ├── FastFind.chm ├── FastFind.chw ├── FastFind.hhp ├── HelpDocs.zip ├── Index.hhk ├── Source │ ├── All_txt2htm.au3 │ ├── html │ │ ├── Introduction.htm │ │ ├── css │ │ │ └── default.css │ │ ├── examples │ │ │ ├── FFAddColor.txt.htm │ │ │ ├── FFBestSpot.txt.htm │ │ │ ├── FFNearestPixel.txt.htm │ │ │ ├── FFNearestSpot.txt.htm │ │ │ ├── FFSetDebugMode.txt.htm │ │ │ └── FFSnapShot.txt.htm │ │ ├── functions │ │ │ ├── FFAddColor.htm │ │ │ ├── FFAddExcludedArea.htm │ │ │ ├── FFBestSpot.htm │ │ │ ├── FFColorCount.htm │ │ │ ├── FFDrawSnapShot.htm │ │ │ ├── FFDuplicateSnapShot.htm │ │ │ ├── FFGetLastError.htm │ │ │ ├── FFGetLastFileName.htm │ │ │ ├── FFGetPixel.htm │ │ │ ├── FFGetVersion.htm │ │ │ ├── FFIsDifferent.htm │ │ │ ├── FFIsExcluded.htm │ │ │ ├── FFKeepChanges.htm │ │ │ ├── FFKeepColor.htm │ │ │ ├── FFLocalizeChanges.htm │ │ │ ├── FFNearestPixel.htm │ │ │ ├── FFNearestSpot.htm │ │ │ ├── FFRemoveColor.htm │ │ │ ├── FFResetColors.htm │ │ │ ├── FFResetExcludedAreas.htm │ │ │ ├── FFSaveBMP.htm │ │ │ ├── FFSaveJPG.htm │ │ │ ├── FFSetDebugMode.htm │ │ │ ├── FFSetDefaultSnapShot.htm │ │ │ ├── FFSetPixel.htm │ │ │ ├── FFSetWnd.htm │ │ │ ├── FFSnapShot.htm │ │ │ ├── FFTrace.htm │ │ │ └── FFTraceError.htm │ │ └── images │ │ │ ├── FindSpotExplain.png │ │ │ └── blue_gradient_1024x24.jpg │ ├── include │ │ ├── CompileLib.au3 │ │ ├── FTP.au3 │ │ └── OutputLib.au3 │ ├── txt2htm.ini │ ├── txt2htm │ │ ├── HelpFileGenerator │ │ │ ├── Defaults.ini │ │ │ ├── Help_File_Generator.au3 │ │ │ └── Templates │ │ │ │ └── HelpTemplate.txt │ │ ├── examples │ │ │ ├── FFAddColor.au3 │ │ │ ├── FFBestSpot.au3 │ │ │ ├── FFNearestPixel.au3 │ │ │ ├── FFNearestSpot.au3 │ │ │ ├── FFSetDebugMode.au3 │ │ │ ├── FFSnapShot.au3 │ │ │ ├── FastFind.au3 │ │ │ ├── FastFind.dll │ │ │ ├── FastFind64.dll │ │ │ └── TRACER.TXT │ │ └── txtFunctions │ │ │ ├── FFAddColor.txt │ │ │ ├── FFAddExcludedArea.txt │ │ │ ├── FFBestSpot.txt │ │ │ ├── FFColorCount.txt │ │ │ ├── FFDrawSnapShot.txt │ │ │ ├── FFDuplicateSnapShot.txt │ │ │ ├── FFGetLastError.txt │ │ │ ├── FFGetLastFileName.txt │ │ │ ├── FFGetPixel.txt │ │ │ ├── FFGetVersion.txt │ │ │ ├── FFIsDifferent.txt │ │ │ ├── FFIsExcluded.txt │ │ │ ├── FFKeepChanges.txt │ │ │ ├── FFKeepColor.txt │ │ │ ├── FFLocalizeChanges.txt │ │ │ ├── FFNearestPixel.txt │ │ │ ├── FFNearestSpot.txt │ │ │ ├── FFRemoveColor.txt │ │ │ ├── FFResetColors.txt │ │ │ ├── FFResetExcludedAreas.txt │ │ │ ├── FFSaveBMP.txt │ │ │ ├── FFSaveJPG.txt │ │ │ ├── FFSetDebugMode.txt │ │ │ ├── FFSetDefaultSnapShot.txt │ │ │ ├── FFSetPixel.txt │ │ │ ├── FFSetWnd.txt │ │ │ ├── FFSnapShot.txt │ │ │ ├── FFTrace.txt │ │ │ └── FFTraceError.txt │ └── txt2htm_error.log ├── Table of Contents.hhc ├── html │ ├── Introduction.htm │ ├── css │ │ └── default.css │ ├── examples │ │ ├── FFAddColor.txt.htm │ │ ├── FFBestSpot.txt.htm │ │ ├── FFNearestPixel.txt.htm │ │ ├── FFNearestSpot.txt.htm │ │ ├── FFSetDebugMode.txt.htm │ │ └── FFSnapShot.txt.htm │ ├── functions │ │ ├── FFAddColor.htm │ │ ├── FFAddExcludedArea.htm │ │ ├── FFApplyFilterOnSnapShot.htm │ │ ├── FFBestSpot.htm │ │ ├── FFColorCount.htm │ │ ├── FFComputeMeanValues.htm │ │ ├── FFDrawSnapShot.htm │ │ ├── FFDrawSnapShotXY.htm │ │ ├── FFDuplicateSnapShot.htm │ │ ├── FFGetLastError.htm │ │ ├── FFGetLastFileName.htm │ │ ├── FFGetPixel.htm │ │ ├── FFGetRawData.htm │ │ ├── FFGetVersion.htm │ │ ├── FFIsDifferent.htm │ │ ├── FFIsExcluded.htm │ │ ├── FFKeepChanges.htm │ │ ├── FFKeepColor.htm │ │ ├── FFLocalizeChanges.htm │ │ ├── FFNearestPixel.htm │ │ ├── FFNearestSpot.htm │ │ ├── FFRemoveColor.htm │ │ ├── FFResetColors.htm │ │ ├── FFResetExcludedAreas.htm │ │ ├── FFSaveBMP.htm │ │ ├── FFSaveJPG.htm │ │ ├── FFSetDebugMode.htm │ │ ├── FFSetDefaultSnapShot.htm │ │ ├── FFSetPixel.htm │ │ ├── FFSetWnd.htm │ │ ├── FFSnapShot.htm │ │ ├── FFTrace.htm │ │ └── FFTraceError.htm │ └── images │ │ ├── FindSpotExplain.png │ │ └── blue_gradient_1024x24.jpg └── htmlhelp.exe ├── FFShowPixels.exe ├── FastFind.sln ├── FastFindDLL.def ├── FastFindDLL ├── DofusSpecific.cpp ├── FastFind.cpp ├── FastFind.h ├── FastFind.rc ├── FastFindDLL.filters ├── FastFindDLL.vcproj ├── FastFindDLL.vcxproj ├── HiResTimer.cpp ├── HiResTimer.h ├── ImageProcessing.cpp ├── New in 2_0.txt ├── PixelProcessing.cpp ├── PixelProcessing.h ├── SnapShots.cpp ├── Specific.cpp ├── Tracer.cpp ├── Tracer.h ├── Win9x.asm ├── license.txt ├── proto.h ├── resource.h ├── stdafx.cpp └── stdafx.h ├── README.md └── ShowPixels ├── DlgProxy.h ├── MouseHook.cpp ├── MouseHook.h ├── ReadMe.txt ├── ShowPixels.cpp ├── ShowPixels.h ├── ShowPixels.idl ├── ShowPixels.rc ├── ShowPixels.reg ├── ShowPixels.vcxproj ├── ShowPixels.vcxproj.filters ├── ShowPixelsDlg.cpp ├── ShowPixelsDlg.h ├── ShowPixels_h.h ├── TRACER.TXT ├── res ├── ShowPixels.ico └── ShowPixels.rc2 ├── resource.h ├── stdafx.cpp └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/.gitignore -------------------------------------------------------------------------------- /Distributed Zip/Benchmark.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/Benchmark.au3 -------------------------------------------------------------------------------- /Distributed Zip/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/Changelog.txt -------------------------------------------------------------------------------- /Distributed Zip/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/Credits.txt -------------------------------------------------------------------------------- /Distributed Zip/FastFind 2_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind 2_2.zip -------------------------------------------------------------------------------- /Distributed Zip/FastFind.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind.au3 -------------------------------------------------------------------------------- /Distributed Zip/FastFind.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind.chm -------------------------------------------------------------------------------- /Distributed Zip/FastFind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind.dll -------------------------------------------------------------------------------- /Distributed Zip/FastFind64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind64.dll -------------------------------------------------------------------------------- /Distributed Zip/FastFind_Demo.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/FastFind_Demo.au3 -------------------------------------------------------------------------------- /Distributed Zip/Integration/FastFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/Integration/FastFind.h -------------------------------------------------------------------------------- /Distributed Zip/Integration/FastFindDLL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/Distributed Zip/Integration/FastFindDLL.def -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFAddColor.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFAddColor.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFBestSpot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFBestSpot.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFNearestPixel.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFNearestPixel.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFNearestSpot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFNearestSpot.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFSetDebugMode.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFSetDebugMode.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FFSnapShot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FFSnapShot.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FastFind.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FastFind.au3 -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FastFind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FastFind.dll -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/FastFind64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/FastFind64.dll -------------------------------------------------------------------------------- /FF help/Examples/HelpFile/TRACER.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Examples/HelpFile/TRACER.TXT -------------------------------------------------------------------------------- /FF help/FastFind.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/FastFind.chm -------------------------------------------------------------------------------- /FF help/FastFind.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/FastFind.chw -------------------------------------------------------------------------------- /FF help/FastFind.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/FastFind.hhp -------------------------------------------------------------------------------- /FF help/HelpDocs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/HelpDocs.zip -------------------------------------------------------------------------------- /FF help/Index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Index.hhk -------------------------------------------------------------------------------- /FF help/Source/All_txt2htm.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/All_txt2htm.au3 -------------------------------------------------------------------------------- /FF help/Source/html/Introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/Introduction.htm -------------------------------------------------------------------------------- /FF help/Source/html/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/css/default.css -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFAddColor.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFAddColor.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFBestSpot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFBestSpot.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFNearestPixel.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFNearestPixel.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFNearestSpot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFNearestSpot.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFSetDebugMode.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFSetDebugMode.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/examples/FFSnapShot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/examples/FFSnapShot.txt.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFAddColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFAddColor.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFAddExcludedArea.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFAddExcludedArea.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFBestSpot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFBestSpot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFColorCount.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFColorCount.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFDrawSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFDrawSnapShot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFDuplicateSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFDuplicateSnapShot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFGetLastError.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFGetLastError.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFGetLastFileName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFGetLastFileName.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFGetPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFGetPixel.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFGetVersion.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFGetVersion.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFIsDifferent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFIsDifferent.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFIsExcluded.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFIsExcluded.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFKeepChanges.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFKeepChanges.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFKeepColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFKeepColor.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFLocalizeChanges.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFLocalizeChanges.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFNearestPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFNearestPixel.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFNearestSpot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFNearestSpot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFRemoveColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFRemoveColor.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFResetColors.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFResetColors.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFResetExcludedAreas.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFResetExcludedAreas.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSaveBMP.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSaveBMP.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSaveJPG.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSaveJPG.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSetDebugMode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSetDebugMode.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSetDefaultSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSetDefaultSnapShot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSetPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSetPixel.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSetWnd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSetWnd.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFSnapShot.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFTrace.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFTrace.htm -------------------------------------------------------------------------------- /FF help/Source/html/functions/FFTraceError.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/functions/FFTraceError.htm -------------------------------------------------------------------------------- /FF help/Source/html/images/FindSpotExplain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/images/FindSpotExplain.png -------------------------------------------------------------------------------- /FF help/Source/html/images/blue_gradient_1024x24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/html/images/blue_gradient_1024x24.jpg -------------------------------------------------------------------------------- /FF help/Source/include/CompileLib.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/include/CompileLib.au3 -------------------------------------------------------------------------------- /FF help/Source/include/FTP.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/include/FTP.au3 -------------------------------------------------------------------------------- /FF help/Source/include/OutputLib.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/include/OutputLib.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm.ini -------------------------------------------------------------------------------- /FF help/Source/txt2htm/HelpFileGenerator/Defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/HelpFileGenerator/Defaults.ini -------------------------------------------------------------------------------- /FF help/Source/txt2htm/HelpFileGenerator/Help_File_Generator.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/HelpFileGenerator/Help_File_Generator.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/HelpFileGenerator/Templates/HelpTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/HelpFileGenerator/Templates/HelpTemplate.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFAddColor.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFAddColor.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFBestSpot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFBestSpot.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFNearestPixel.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFNearestPixel.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFNearestSpot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFNearestSpot.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFSetDebugMode.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFSetDebugMode.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FFSnapShot.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FFSnapShot.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FastFind.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FastFind.au3 -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FastFind.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FastFind.dll -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/FastFind64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/FastFind64.dll -------------------------------------------------------------------------------- /FF help/Source/txt2htm/examples/TRACER.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/examples/TRACER.TXT -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFAddColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFAddColor.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFAddExcludedArea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFAddExcludedArea.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFBestSpot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFBestSpot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFColorCount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFColorCount.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFDrawSnapShot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFDrawSnapShot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFDuplicateSnapShot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFDuplicateSnapShot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFGetLastError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFGetLastError.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFGetLastFileName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFGetLastFileName.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFGetPixel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFGetPixel.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFGetVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFGetVersion.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFIsDifferent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFIsDifferent.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFIsExcluded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFIsExcluded.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFKeepChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFKeepChanges.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFKeepColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFKeepColor.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFLocalizeChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFLocalizeChanges.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFNearestPixel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFNearestPixel.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFNearestSpot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFNearestSpot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFRemoveColor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFRemoveColor.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFResetColors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFResetColors.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFResetExcludedAreas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFResetExcludedAreas.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSaveBMP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSaveBMP.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSaveJPG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSaveJPG.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSetDebugMode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSetDebugMode.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSetDefaultSnapShot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSetDefaultSnapShot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSetPixel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSetPixel.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSetWnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSetWnd.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFSnapShot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFSnapShot.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFTrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFTrace.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm/txtFunctions/FFTraceError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm/txtFunctions/FFTraceError.txt -------------------------------------------------------------------------------- /FF help/Source/txt2htm_error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Source/txt2htm_error.log -------------------------------------------------------------------------------- /FF help/Table of Contents.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/Table of Contents.hhc -------------------------------------------------------------------------------- /FF help/html/Introduction.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/Introduction.htm -------------------------------------------------------------------------------- /FF help/html/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/css/default.css -------------------------------------------------------------------------------- /FF help/html/examples/FFAddColor.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFAddColor.txt.htm -------------------------------------------------------------------------------- /FF help/html/examples/FFBestSpot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFBestSpot.txt.htm -------------------------------------------------------------------------------- /FF help/html/examples/FFNearestPixel.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFNearestPixel.txt.htm -------------------------------------------------------------------------------- /FF help/html/examples/FFNearestSpot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFNearestSpot.txt.htm -------------------------------------------------------------------------------- /FF help/html/examples/FFSetDebugMode.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFSetDebugMode.txt.htm -------------------------------------------------------------------------------- /FF help/html/examples/FFSnapShot.txt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/examples/FFSnapShot.txt.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFAddColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFAddColor.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFAddExcludedArea.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFAddExcludedArea.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFApplyFilterOnSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFApplyFilterOnSnapShot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFBestSpot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFBestSpot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFColorCount.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFColorCount.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFComputeMeanValues.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFComputeMeanValues.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFDrawSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFDrawSnapShot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFDrawSnapShotXY.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFDrawSnapShotXY.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFDuplicateSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFDuplicateSnapShot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFGetLastError.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFGetLastError.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFGetLastFileName.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFGetLastFileName.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFGetPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFGetPixel.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFGetRawData.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFGetRawData.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFGetVersion.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFGetVersion.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFIsDifferent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFIsDifferent.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFIsExcluded.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFIsExcluded.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFKeepChanges.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFKeepChanges.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFKeepColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFKeepColor.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFLocalizeChanges.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFLocalizeChanges.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFNearestPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFNearestPixel.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFNearestSpot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFNearestSpot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFRemoveColor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFRemoveColor.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFResetColors.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFResetColors.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFResetExcludedAreas.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFResetExcludedAreas.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSaveBMP.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSaveBMP.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSaveJPG.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSaveJPG.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSetDebugMode.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSetDebugMode.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSetDefaultSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSetDefaultSnapShot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSetPixel.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSetPixel.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSetWnd.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSetWnd.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFSnapShot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFSnapShot.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFTrace.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFTrace.htm -------------------------------------------------------------------------------- /FF help/html/functions/FFTraceError.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/functions/FFTraceError.htm -------------------------------------------------------------------------------- /FF help/html/images/FindSpotExplain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/images/FindSpotExplain.png -------------------------------------------------------------------------------- /FF help/html/images/blue_gradient_1024x24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/html/images/blue_gradient_1024x24.jpg -------------------------------------------------------------------------------- /FF help/htmlhelp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FF help/htmlhelp.exe -------------------------------------------------------------------------------- /FFShowPixels.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FFShowPixels.exe -------------------------------------------------------------------------------- /FastFind.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFind.sln -------------------------------------------------------------------------------- /FastFindDLL.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL.def -------------------------------------------------------------------------------- /FastFindDLL/DofusSpecific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/DofusSpecific.cpp -------------------------------------------------------------------------------- /FastFindDLL/FastFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFind.cpp -------------------------------------------------------------------------------- /FastFindDLL/FastFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFind.h -------------------------------------------------------------------------------- /FastFindDLL/FastFind.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFind.rc -------------------------------------------------------------------------------- /FastFindDLL/FastFindDLL.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFindDLL.filters -------------------------------------------------------------------------------- /FastFindDLL/FastFindDLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFindDLL.vcproj -------------------------------------------------------------------------------- /FastFindDLL/FastFindDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/FastFindDLL.vcxproj -------------------------------------------------------------------------------- /FastFindDLL/HiResTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/HiResTimer.cpp -------------------------------------------------------------------------------- /FastFindDLL/HiResTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/HiResTimer.h -------------------------------------------------------------------------------- /FastFindDLL/ImageProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/ImageProcessing.cpp -------------------------------------------------------------------------------- /FastFindDLL/New in 2_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/New in 2_0.txt -------------------------------------------------------------------------------- /FastFindDLL/PixelProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/PixelProcessing.cpp -------------------------------------------------------------------------------- /FastFindDLL/PixelProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/PixelProcessing.h -------------------------------------------------------------------------------- /FastFindDLL/SnapShots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/SnapShots.cpp -------------------------------------------------------------------------------- /FastFindDLL/Specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/Specific.cpp -------------------------------------------------------------------------------- /FastFindDLL/Tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/Tracer.cpp -------------------------------------------------------------------------------- /FastFindDLL/Tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/Tracer.h -------------------------------------------------------------------------------- /FastFindDLL/Win9x.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/Win9x.asm -------------------------------------------------------------------------------- /FastFindDLL/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/license.txt -------------------------------------------------------------------------------- /FastFindDLL/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/proto.h -------------------------------------------------------------------------------- /FastFindDLL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/resource.h -------------------------------------------------------------------------------- /FastFindDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/stdafx.cpp -------------------------------------------------------------------------------- /FastFindDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/FastFindDLL/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/README.md -------------------------------------------------------------------------------- /ShowPixels/DlgProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/DlgProxy.h -------------------------------------------------------------------------------- /ShowPixels/MouseHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/MouseHook.cpp -------------------------------------------------------------------------------- /ShowPixels/MouseHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/MouseHook.h -------------------------------------------------------------------------------- /ShowPixels/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ReadMe.txt -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.cpp -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.h -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.idl -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.rc -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.reg -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.vcxproj -------------------------------------------------------------------------------- /ShowPixels/ShowPixels.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels.vcxproj.filters -------------------------------------------------------------------------------- /ShowPixels/ShowPixelsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixelsDlg.cpp -------------------------------------------------------------------------------- /ShowPixels/ShowPixelsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixelsDlg.h -------------------------------------------------------------------------------- /ShowPixels/ShowPixels_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/ShowPixels_h.h -------------------------------------------------------------------------------- /ShowPixels/TRACER.TXT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShowPixels/res/ShowPixels.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/res/ShowPixels.ico -------------------------------------------------------------------------------- /ShowPixels/res/ShowPixels.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/res/ShowPixels.rc2 -------------------------------------------------------------------------------- /ShowPixels/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/resource.h -------------------------------------------------------------------------------- /ShowPixels/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/stdafx.cpp -------------------------------------------------------------------------------- /ShowPixels/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FastFrench/FastFind/HEAD/ShowPixels/targetver.h --------------------------------------------------------------------------------