├── .gitignore ├── About.cpp ├── About.h ├── Accels.cpp ├── Accels.h ├── AccessToSqlite.cpp ├── AccessToSqlite.h ├── AccessToSqlite ├── AccessToSqlite.cpp ├── AccessToSqlite.def ├── AccessToSqlite.h ├── AccessToSqlite.rc ├── AccessToSqlite.vcproj ├── AccessToSqlite.vcproj.BROGDEN.Brogdens.user ├── AccessToSqlite.vcxproj ├── Clip.cpp ├── Clip.h ├── Convert.cpp ├── Convert.h ├── DataTable.cpp ├── DataTable.h ├── MainTable.cpp ├── MainTable.h ├── OpenAccessdatabase.cpp ├── OpenAccessdatabase.h ├── ReadMe.txt ├── Resource.h ├── TypesTable.cpp ├── TypesTable.h ├── res │ └── AccessToSqlite.rc2 ├── stdafx.cpp └── stdafx.h ├── AddType.cpp ├── AddType.h ├── Addins └── DittoUtil │ ├── DialogResizer.cpp │ ├── DialogResizer.h │ ├── DittoUtil.cpp │ ├── DittoUtil.def │ ├── DittoUtil.h │ ├── DittoUtil.rc │ ├── DittoUtil.sln │ ├── DittoUtil.vcproj │ ├── DittoUtil.vcxproj │ ├── Exports.cpp │ ├── Exports.h │ ├── PasteAnyAsText.cpp │ ├── PasteAnyAsText.h │ ├── PasteImageAsHtmlImage.cpp │ ├── PasteImageAsHtmlImage.h │ ├── ReadMe.txt │ ├── ReadOnlyFlag.cpp │ ├── ReadOnlyFlag.h │ ├── RemoveLineFeeds.cpp │ ├── RemoveLineFeeds.h │ ├── SelectPasteFormat.cpp │ ├── SelectPasteFormat.h │ ├── TextConvert.cpp │ ├── TextConvert.h │ ├── res │ └── DittoUtil.rc2 │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── AlphaBlend.cpp ├── AlphaBlend.h ├── AutoSendToClientThread.cpp ├── AutoSendToClientThread.h ├── BitmapHelper.cpp ├── BitmapHelper.h ├── CF_HDropAggregator.cpp ├── CF_HDropAggregator.h ├── CF_TextAggregator.cpp ├── CF_TextAggregator.h ├── CF_UnicodeTextAggregator.cpp ├── CF_UnicodeTextAggregator.h ├── CP_Main.cpp ├── CP_Main.h ├── CP_Main.rc ├── CP_Main.vcxproj ├── CP_Main.vcxproj.filters ├── CP_Main_10.sln ├── Changes.txt ├── Client.cpp ├── Client.h ├── Clip.cpp ├── Clip.h ├── ClipFormatQListCtrl.cpp ├── ClipFormatQListCtrl.h ├── ClipIds.cpp ├── ClipIds.h ├── Clip_ImportExport.cpp ├── Clip_ImportExport.h ├── ClipboardSaveRestore.cpp ├── ClipboardSaveRestore.h ├── ClipboardViewer.cpp ├── ClipboardViewer.h ├── ComboBoxSearch.cpp ├── ComboBoxSearch.h ├── CopyProperties.cpp ├── CopyProperties.h ├── CopyThread.cpp ├── CopyThread.h ├── Crc32Dynamic.cpp ├── Crc32Dynamic.h ├── DIBAPI.H ├── DIBUTIL.CPP ├── DIBUTIL.H ├── DataTable.cpp ├── DataTable.h ├── DatabaseUtilities.cpp ├── DatabaseUtilities.h ├── Debug ├── Language │ ├── Chinese Traditional.xml │ ├── Chinese.xml │ ├── Croatian.xml │ ├── Czech.xml │ ├── Danish.xml │ ├── Deutsch.xml │ ├── Dutch.xml │ ├── English.xml │ ├── French.xml │ ├── Japanese.xml │ ├── Korean.xml │ ├── Polski.xml │ ├── Portuguese.xml │ ├── Romanian.xml │ ├── Russian.xml │ ├── Slovenian.xml │ ├── Spanish.xml │ ├── Swedish.xml │ ├── Turkish.xml │ └── italiano.xml └── Themes │ ├── BOCApastel.xml │ ├── DarkerDitto.xml │ ├── Ditto.xml │ ├── Nighted.xml │ ├── OnnoG Blue.xml │ └── OnnoG Green.xml ├── DialogResizer.cpp ├── DialogResizer.h ├── DittoAddin.cpp ├── DittoAddin.h ├── DittoAddins.cpp ├── DittoAddins.h ├── DittoCopyBuffer.cpp ├── DittoCopyBuffer.h ├── DittoDropTarget.cpp ├── DittoDropTarget.h ├── DittoRulerRichEditCtrl.cpp ├── DittoRulerRichEditCtrl.h ├── DittoSetup ├── 7za.exe ├── Build Portable ZIP_10.bat ├── BuildDitto.bld ├── Changes.txt ├── ChineseSimp.isl ├── Croatian.isl ├── Czech.isl ├── Danish.isl ├── DittoSetup_10.iss ├── Dutch.isl ├── French.isl ├── German.isl ├── Italian.isl ├── Japanese.isl ├── Korean.isl ├── Polish.isl ├── Portable DittoSetup.iss ├── Portuguese.isl ├── ProjectZip.exe ├── Romanian.isl ├── Russian.isl ├── Slovenian.isl ├── Spanish.isl ├── Swedish.isl ├── Turkish.isl ├── U3 │ ├── 7za.exe │ ├── PackageInstaller.exe │ ├── U3P2EXE.exe │ ├── UpdateFiles.bat │ ├── device │ │ ├── MFC71.dll │ │ ├── mfc71u.dll │ │ ├── msvcp71.dll │ │ └── msvcr71.dll │ ├── host │ │ ├── U3Action.exe │ │ └── U3DittoStop.exe │ └── manifest │ │ ├── Ditto.ico │ │ └── manifest.u3i ├── mfc-crt │ ├── MFC71.dll │ ├── mfc71u.dll │ ├── msvcp71.dll │ └── msvcr71.dll ├── mfc-crt64 │ ├── mfc100u.dll │ ├── mfcm100u.dll │ ├── msvcp100.dll │ └── msvcr100.dll ├── mfc-crt_10 │ ├── mfc100u.dll │ ├── mfcm100u.dll │ ├── msvcp100.dll │ └── msvcr100.dll └── portable ├── DittoWindow.cpp ├── DittoWindow.h ├── EditFrameWnd.cpp ├── EditFrameWnd.h ├── EditWnd.cpp ├── EditWnd.h ├── EncryptDecrypt ├── EncryptDecrypt.plg ├── EncryptDecrypt.vcxproj ├── Encryption.cpp ├── Encryption.h ├── IEncryption.h ├── MemUtil.cpp ├── MemUtil.h ├── NewRandom.cpp ├── NewRandom.h ├── Readme.txt ├── StdAfx.cpp ├── StdAfx.h ├── rijndael.cpp ├── rijndael.h ├── sha2.cpp └── sha2.h ├── EventThread.cpp ├── EventThread.h ├── ExternalWindowTracker.cpp ├── ExternalWindowTracker.h ├── FileRecieve.cpp ├── FileRecieve.h ├── FileSend.cpp ├── FileSend.h ├── FileTransferProgressDlg.cpp ├── FileTransferProgressDlg.h ├── FormatSQL.cpp ├── FormatSQL.h ├── FormattedTextDraw.cpp ├── FormattedTextDraw.h ├── FriendDetails.cpp ├── FriendDetails.h ├── GlobalClips.cpp ├── GlobalClips.h ├── GroupCombo.cpp ├── GroupCombo.h ├── GroupName.cpp ├── GroupName.h ├── GroupStatic.cpp ├── GroupStatic.h ├── GroupTree.cpp ├── GroupTree.h ├── GroupWnd.cpp ├── GroupWnd.h ├── HListBox.cpp ├── HListBox.h ├── HTMLFormatAggregator.cpp ├── HTMLFormatAggregator.h ├── Help ├── DittoConfig.htm ├── DittoCustomKeys.htm ├── DittoFAQ.htm ├── DittoGettingStarted.htm ├── Dutch_DittoConfig.htm ├── Dutch_DittoFAQ.htm ├── Dutch_DittoGettingStarted.htm ├── RegCustomKeys.jpg └── U3_Install.htm ├── HotKeys.cpp ├── HotKeys.h ├── HyperLink.cpp ├── HyperLink.h ├── IClipAggregator.h ├── InternetUpdate.cpp ├── InternetUpdate.h ├── MagneticWnd.cpp ├── MagneticWnd.h ├── MainFrm.cpp ├── MainFrm.h ├── MainFrmThread.cpp ├── MainFrmThread.h ├── MainTable.cpp ├── MainTable.h ├── MainTableFunctions.cpp ├── MainTableFunctions.h ├── MessagePumpThread.cpp ├── MessagePumpThread.h ├── Misc.cpp ├── Misc.h ├── MoveToGroupDlg.cpp ├── MoveToGroupDlg.h ├── MultiLanguage.cpp ├── MultiLanguage.h ├── NumberEdit.cpp ├── NumberEdit.h ├── OleClipSource.cpp ├── OleClipSource.h ├── OptionFriends.cpp ├── OptionFriends.h ├── Options.cpp ├── Options.h ├── OptionsCopyBuffers.cpp ├── OptionsCopyBuffers.h ├── OptionsGeneral.cpp ├── OptionsGeneral.h ├── OptionsKeyBoard.cpp ├── OptionsKeyBoard.h ├── OptionsQuickPaste.cpp ├── OptionsQuickPaste.h ├── OptionsSheet.cpp ├── OptionsSheet.h ├── OptionsStats.cpp ├── OptionsStats.h ├── OptionsTypes.cpp ├── OptionsTypes.h ├── OptionsUtilities.cpp ├── OptionsUtilities.h ├── Path.cpp ├── Path.h ├── PerfTimer.cpp ├── PerfTimer.h ├── Popup.cpp ├── Popup.h ├── ProcessCopy.cpp ├── ProcessCopy.h ├── ProcessPaste.cpp ├── ProcessPaste.h ├── ProgressWnd.cpp ├── ProgressWnd.h ├── QListCtrl.cpp ├── QListCtrl.h ├── QPasteWnd.cpp ├── QPasteWnd.h ├── QPasteWndThread.cpp ├── QPasteWndThread.h ├── QuickPaste.cpp ├── QuickPaste.h ├── ReadMe.txt ├── RecieveFile.cpp ├── RecieveFile.h ├── RecieveSocket.cpp ├── RecieveSocket.h ├── Release └── focus.lib ├── Resource.h ├── RichEditCtrlEx.cpp ├── RichEditCtrlEx.h ├── RichTextAggregator.cpp ├── RichTextAggregator.h ├── RulerRichEditCtrl ├── External │ ├── ColourPicker.cpp │ ├── ColourPicker.h │ ├── ColourPopup.cpp │ ├── ColourPopup.h │ ├── StdioFileEx.cpp │ └── StdioFileEx.h ├── FontComboBox.cpp ├── FontComboBox.h ├── RRECRuler.cpp ├── RRECRuler.h ├── RRECToolbar.cpp ├── RRECToolbar.h ├── RulerRichEdit.cpp ├── RulerRichEdit.h ├── RulerRichEditCtrl.cpp ├── RulerRichEditCtrl.h ├── RulerRichEditCtrl.rc ├── SizeComboBox.cpp ├── SizeComboBox.h ├── StdGrfx.cpp ├── StdGrfx.h ├── TextFile │ ├── TextFile.cpp │ └── TextFile.h ├── ids.h └── toolbar.bmp ├── SaveAnimation.cpp ├── SaveAnimation.h ├── SearchEditBox.cpp ├── SearchEditBox.h ├── SelectDB.cpp ├── SelectDB.h ├── SendKeys.cpp ├── SendKeys.h ├── SendSocket.cpp ├── SendSocket.h ├── Server.cpp ├── Server.h ├── ServerDefines.h ├── Shared ├── ArrayEx.h ├── DittoDefines.h ├── IAddinExports.h ├── IClip.h ├── TextConvert.cpp ├── TextConvert.h ├── Tokenizer.cpp └── Tokenizer.h ├── ShowTaskBarIcon.cpp ├── ShowTaskBarIcon.h ├── StdAfx.cpp ├── StdAfx.h ├── SystemTray.cpp ├── SystemTray.h ├── TabCtrl.cpp ├── TabCtrl.h ├── Theme.cpp ├── Theme.h ├── TinyXml ├── tinystr.h ├── tinyxml.h ├── tinyxml.lib ├── tinyxml64.lib ├── tinyxmld.lib └── tinyxmld64.lib ├── ToolTipEx.cpp ├── ToolTipEx.h ├── TypesTable.cpp ├── TypesTable.h ├── U3Stop ├── Resource.h ├── U3Start.aps ├── U3Start.cpp ├── U3Start.h ├── U3Start.rc ├── U3Stop.vcproj ├── U3Stop.vcxproj ├── res │ ├── U3Start.ico │ ├── U3Start.manifest │ └── U3Start.rc2 ├── stdafx.cpp └── stdafx.h ├── UnicodeMacros.h ├── Version.Lib ├── WebSite ├── Dutch_DittoConfig.htm ├── Dutch_DittoFAQ.htm ├── Dutch_DittoGettingStarted.htm ├── ThumsUp.png ├── changeHistory.php ├── default.css ├── header.php ├── images │ ├── img01.gif │ ├── img02.gif │ ├── img03.gif │ ├── img04.gif │ └── spacer.gif ├── index.php └── rightSide.php ├── WildCardMatch.cpp ├── WildCardMatch.h ├── WndEx.cpp ├── WndEx.h ├── focusdll ├── focus.rc ├── focus.vcxproj ├── focusdll.cpp ├── focusdll.h └── resource.h ├── memdc.h ├── res ├── CP_Main.ico ├── CP_Main.rc2 ├── CP_MainDoc.ico ├── Ditto.ico ├── Ditto2.ico ├── Ditto2_NoCopyCb.ico ├── DittoNew.ico ├── Ditto_NoCopyCb.ico ├── FILECOPY.AVI ├── Toolbar.bmp ├── back.bmp ├── back1.bmp ├── back2.bmp ├── bitmap1.bmp ├── bmp00001.bmp ├── bmp00002.bmp ├── bmp00003.bmp ├── closed_f.bmp ├── mainfram.bmp ├── open_fol.bmp └── toolbar1.bmp ├── sqlite ├── CppSQLite3.cpp ├── CppSQLite3.h ├── shell.c ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h └── zlib ├── zconf.h ├── zlib.h ├── zlib.lib ├── zlib64.lib ├── zlibd.lib └── zlibd64.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/.gitignore -------------------------------------------------------------------------------- /About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/About.cpp -------------------------------------------------------------------------------- /About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/About.h -------------------------------------------------------------------------------- /Accels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Accels.cpp -------------------------------------------------------------------------------- /Accels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Accels.h -------------------------------------------------------------------------------- /AccessToSqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite.cpp -------------------------------------------------------------------------------- /AccessToSqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite.h -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.cpp -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.def -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.h -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.rc -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.vcproj -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.vcproj.BROGDEN.Brogdens.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.vcproj.BROGDEN.Brogdens.user -------------------------------------------------------------------------------- /AccessToSqlite/AccessToSqlite.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/AccessToSqlite.vcxproj -------------------------------------------------------------------------------- /AccessToSqlite/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/Clip.cpp -------------------------------------------------------------------------------- /AccessToSqlite/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/Clip.h -------------------------------------------------------------------------------- /AccessToSqlite/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/Convert.cpp -------------------------------------------------------------------------------- /AccessToSqlite/Convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/Convert.h -------------------------------------------------------------------------------- /AccessToSqlite/DataTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/DataTable.cpp -------------------------------------------------------------------------------- /AccessToSqlite/DataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/DataTable.h -------------------------------------------------------------------------------- /AccessToSqlite/MainTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/MainTable.cpp -------------------------------------------------------------------------------- /AccessToSqlite/MainTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/MainTable.h -------------------------------------------------------------------------------- /AccessToSqlite/OpenAccessdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/OpenAccessdatabase.cpp -------------------------------------------------------------------------------- /AccessToSqlite/OpenAccessdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/OpenAccessdatabase.h -------------------------------------------------------------------------------- /AccessToSqlite/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/ReadMe.txt -------------------------------------------------------------------------------- /AccessToSqlite/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/Resource.h -------------------------------------------------------------------------------- /AccessToSqlite/TypesTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/TypesTable.cpp -------------------------------------------------------------------------------- /AccessToSqlite/TypesTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/TypesTable.h -------------------------------------------------------------------------------- /AccessToSqlite/res/AccessToSqlite.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/res/AccessToSqlite.rc2 -------------------------------------------------------------------------------- /AccessToSqlite/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/stdafx.cpp -------------------------------------------------------------------------------- /AccessToSqlite/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AccessToSqlite/stdafx.h -------------------------------------------------------------------------------- /AddType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AddType.cpp -------------------------------------------------------------------------------- /AddType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AddType.h -------------------------------------------------------------------------------- /Addins/DittoUtil/DialogResizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DialogResizer.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/DialogResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DialogResizer.h -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.def -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.h -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.rc -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.sln -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.vcproj -------------------------------------------------------------------------------- /Addins/DittoUtil/DittoUtil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/DittoUtil.vcxproj -------------------------------------------------------------------------------- /Addins/DittoUtil/Exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/Exports.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/Exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/Exports.h -------------------------------------------------------------------------------- /Addins/DittoUtil/PasteAnyAsText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/PasteAnyAsText.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/PasteAnyAsText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/PasteAnyAsText.h -------------------------------------------------------------------------------- /Addins/DittoUtil/PasteImageAsHtmlImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/PasteImageAsHtmlImage.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/PasteImageAsHtmlImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/PasteImageAsHtmlImage.h -------------------------------------------------------------------------------- /Addins/DittoUtil/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/ReadMe.txt -------------------------------------------------------------------------------- /Addins/DittoUtil/ReadOnlyFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/ReadOnlyFlag.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/ReadOnlyFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/ReadOnlyFlag.h -------------------------------------------------------------------------------- /Addins/DittoUtil/RemoveLineFeeds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/RemoveLineFeeds.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/RemoveLineFeeds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/RemoveLineFeeds.h -------------------------------------------------------------------------------- /Addins/DittoUtil/SelectPasteFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/SelectPasteFormat.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/SelectPasteFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/SelectPasteFormat.h -------------------------------------------------------------------------------- /Addins/DittoUtil/TextConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/TextConvert.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/TextConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/TextConvert.h -------------------------------------------------------------------------------- /Addins/DittoUtil/res/DittoUtil.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/res/DittoUtil.rc2 -------------------------------------------------------------------------------- /Addins/DittoUtil/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/resource.h -------------------------------------------------------------------------------- /Addins/DittoUtil/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/stdafx.cpp -------------------------------------------------------------------------------- /Addins/DittoUtil/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Addins/DittoUtil/stdafx.h -------------------------------------------------------------------------------- /AlphaBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AlphaBlend.cpp -------------------------------------------------------------------------------- /AlphaBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AlphaBlend.h -------------------------------------------------------------------------------- /AutoSendToClientThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AutoSendToClientThread.cpp -------------------------------------------------------------------------------- /AutoSendToClientThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/AutoSendToClientThread.h -------------------------------------------------------------------------------- /BitmapHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/BitmapHelper.cpp -------------------------------------------------------------------------------- /BitmapHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/BitmapHelper.h -------------------------------------------------------------------------------- /CF_HDropAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_HDropAggregator.cpp -------------------------------------------------------------------------------- /CF_HDropAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_HDropAggregator.h -------------------------------------------------------------------------------- /CF_TextAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_TextAggregator.cpp -------------------------------------------------------------------------------- /CF_TextAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_TextAggregator.h -------------------------------------------------------------------------------- /CF_UnicodeTextAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_UnicodeTextAggregator.cpp -------------------------------------------------------------------------------- /CF_UnicodeTextAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CF_UnicodeTextAggregator.h -------------------------------------------------------------------------------- /CP_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main.cpp -------------------------------------------------------------------------------- /CP_Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main.h -------------------------------------------------------------------------------- /CP_Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main.rc -------------------------------------------------------------------------------- /CP_Main.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main.vcxproj -------------------------------------------------------------------------------- /CP_Main.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main.vcxproj.filters -------------------------------------------------------------------------------- /CP_Main_10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CP_Main_10.sln -------------------------------------------------------------------------------- /Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Changes.txt -------------------------------------------------------------------------------- /Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Client.cpp -------------------------------------------------------------------------------- /Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Client.h -------------------------------------------------------------------------------- /Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Clip.cpp -------------------------------------------------------------------------------- /Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Clip.h -------------------------------------------------------------------------------- /ClipFormatQListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipFormatQListCtrl.cpp -------------------------------------------------------------------------------- /ClipFormatQListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipFormatQListCtrl.h -------------------------------------------------------------------------------- /ClipIds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipIds.cpp -------------------------------------------------------------------------------- /ClipIds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipIds.h -------------------------------------------------------------------------------- /Clip_ImportExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Clip_ImportExport.cpp -------------------------------------------------------------------------------- /Clip_ImportExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Clip_ImportExport.h -------------------------------------------------------------------------------- /ClipboardSaveRestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipboardSaveRestore.cpp -------------------------------------------------------------------------------- /ClipboardSaveRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipboardSaveRestore.h -------------------------------------------------------------------------------- /ClipboardViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipboardViewer.cpp -------------------------------------------------------------------------------- /ClipboardViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ClipboardViewer.h -------------------------------------------------------------------------------- /ComboBoxSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ComboBoxSearch.cpp -------------------------------------------------------------------------------- /ComboBoxSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ComboBoxSearch.h -------------------------------------------------------------------------------- /CopyProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CopyProperties.cpp -------------------------------------------------------------------------------- /CopyProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CopyProperties.h -------------------------------------------------------------------------------- /CopyThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CopyThread.cpp -------------------------------------------------------------------------------- /CopyThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/CopyThread.h -------------------------------------------------------------------------------- /Crc32Dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Crc32Dynamic.cpp -------------------------------------------------------------------------------- /Crc32Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Crc32Dynamic.h -------------------------------------------------------------------------------- /DIBAPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DIBAPI.H -------------------------------------------------------------------------------- /DIBUTIL.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DIBUTIL.CPP -------------------------------------------------------------------------------- /DIBUTIL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DIBUTIL.H -------------------------------------------------------------------------------- /DataTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DataTable.cpp -------------------------------------------------------------------------------- /DataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DataTable.h -------------------------------------------------------------------------------- /DatabaseUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DatabaseUtilities.cpp -------------------------------------------------------------------------------- /DatabaseUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DatabaseUtilities.h -------------------------------------------------------------------------------- /Debug/Language/Chinese Traditional.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Chinese Traditional.xml -------------------------------------------------------------------------------- /Debug/Language/Chinese.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Chinese.xml -------------------------------------------------------------------------------- /Debug/Language/Croatian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Croatian.xml -------------------------------------------------------------------------------- /Debug/Language/Czech.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Czech.xml -------------------------------------------------------------------------------- /Debug/Language/Danish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Danish.xml -------------------------------------------------------------------------------- /Debug/Language/Deutsch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Deutsch.xml -------------------------------------------------------------------------------- /Debug/Language/Dutch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Dutch.xml -------------------------------------------------------------------------------- /Debug/Language/English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/English.xml -------------------------------------------------------------------------------- /Debug/Language/French.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/French.xml -------------------------------------------------------------------------------- /Debug/Language/Japanese.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Japanese.xml -------------------------------------------------------------------------------- /Debug/Language/Korean.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Korean.xml -------------------------------------------------------------------------------- /Debug/Language/Polski.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Polski.xml -------------------------------------------------------------------------------- /Debug/Language/Portuguese.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Portuguese.xml -------------------------------------------------------------------------------- /Debug/Language/Romanian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Romanian.xml -------------------------------------------------------------------------------- /Debug/Language/Russian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Russian.xml -------------------------------------------------------------------------------- /Debug/Language/Slovenian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Slovenian.xml -------------------------------------------------------------------------------- /Debug/Language/Spanish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Spanish.xml -------------------------------------------------------------------------------- /Debug/Language/Swedish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Swedish.xml -------------------------------------------------------------------------------- /Debug/Language/Turkish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/Turkish.xml -------------------------------------------------------------------------------- /Debug/Language/italiano.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Language/italiano.xml -------------------------------------------------------------------------------- /Debug/Themes/BOCApastel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/BOCApastel.xml -------------------------------------------------------------------------------- /Debug/Themes/DarkerDitto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/DarkerDitto.xml -------------------------------------------------------------------------------- /Debug/Themes/Ditto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/Ditto.xml -------------------------------------------------------------------------------- /Debug/Themes/Nighted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/Nighted.xml -------------------------------------------------------------------------------- /Debug/Themes/OnnoG Blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/OnnoG Blue.xml -------------------------------------------------------------------------------- /Debug/Themes/OnnoG Green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Debug/Themes/OnnoG Green.xml -------------------------------------------------------------------------------- /DialogResizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DialogResizer.cpp -------------------------------------------------------------------------------- /DialogResizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DialogResizer.h -------------------------------------------------------------------------------- /DittoAddin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoAddin.cpp -------------------------------------------------------------------------------- /DittoAddin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoAddin.h -------------------------------------------------------------------------------- /DittoAddins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoAddins.cpp -------------------------------------------------------------------------------- /DittoAddins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoAddins.h -------------------------------------------------------------------------------- /DittoCopyBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoCopyBuffer.cpp -------------------------------------------------------------------------------- /DittoCopyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoCopyBuffer.h -------------------------------------------------------------------------------- /DittoDropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoDropTarget.cpp -------------------------------------------------------------------------------- /DittoDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoDropTarget.h -------------------------------------------------------------------------------- /DittoRulerRichEditCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoRulerRichEditCtrl.cpp -------------------------------------------------------------------------------- /DittoRulerRichEditCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoRulerRichEditCtrl.h -------------------------------------------------------------------------------- /DittoSetup/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/7za.exe -------------------------------------------------------------------------------- /DittoSetup/Build Portable ZIP_10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Build Portable ZIP_10.bat -------------------------------------------------------------------------------- /DittoSetup/BuildDitto.bld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/BuildDitto.bld -------------------------------------------------------------------------------- /DittoSetup/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Changes.txt -------------------------------------------------------------------------------- /DittoSetup/ChineseSimp.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/ChineseSimp.isl -------------------------------------------------------------------------------- /DittoSetup/Croatian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Croatian.isl -------------------------------------------------------------------------------- /DittoSetup/Czech.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Czech.isl -------------------------------------------------------------------------------- /DittoSetup/Danish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Danish.isl -------------------------------------------------------------------------------- /DittoSetup/DittoSetup_10.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/DittoSetup_10.iss -------------------------------------------------------------------------------- /DittoSetup/Dutch.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Dutch.isl -------------------------------------------------------------------------------- /DittoSetup/French.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/French.isl -------------------------------------------------------------------------------- /DittoSetup/German.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/German.isl -------------------------------------------------------------------------------- /DittoSetup/Italian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Italian.isl -------------------------------------------------------------------------------- /DittoSetup/Japanese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Japanese.isl -------------------------------------------------------------------------------- /DittoSetup/Korean.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Korean.isl -------------------------------------------------------------------------------- /DittoSetup/Polish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Polish.isl -------------------------------------------------------------------------------- /DittoSetup/Portable DittoSetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Portable DittoSetup.iss -------------------------------------------------------------------------------- /DittoSetup/Portuguese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Portuguese.isl -------------------------------------------------------------------------------- /DittoSetup/ProjectZip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/ProjectZip.exe -------------------------------------------------------------------------------- /DittoSetup/Romanian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Romanian.isl -------------------------------------------------------------------------------- /DittoSetup/Russian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Russian.isl -------------------------------------------------------------------------------- /DittoSetup/Slovenian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Slovenian.isl -------------------------------------------------------------------------------- /DittoSetup/Spanish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Spanish.isl -------------------------------------------------------------------------------- /DittoSetup/Swedish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Swedish.isl -------------------------------------------------------------------------------- /DittoSetup/Turkish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/Turkish.isl -------------------------------------------------------------------------------- /DittoSetup/U3/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/7za.exe -------------------------------------------------------------------------------- /DittoSetup/U3/PackageInstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/PackageInstaller.exe -------------------------------------------------------------------------------- /DittoSetup/U3/U3P2EXE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/U3P2EXE.exe -------------------------------------------------------------------------------- /DittoSetup/U3/UpdateFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/UpdateFiles.bat -------------------------------------------------------------------------------- /DittoSetup/U3/device/MFC71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/device/MFC71.dll -------------------------------------------------------------------------------- /DittoSetup/U3/device/mfc71u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/device/mfc71u.dll -------------------------------------------------------------------------------- /DittoSetup/U3/device/msvcp71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/device/msvcp71.dll -------------------------------------------------------------------------------- /DittoSetup/U3/device/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/device/msvcr71.dll -------------------------------------------------------------------------------- /DittoSetup/U3/host/U3Action.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/host/U3Action.exe -------------------------------------------------------------------------------- /DittoSetup/U3/host/U3DittoStop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/host/U3DittoStop.exe -------------------------------------------------------------------------------- /DittoSetup/U3/manifest/Ditto.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/manifest/Ditto.ico -------------------------------------------------------------------------------- /DittoSetup/U3/manifest/manifest.u3i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/U3/manifest/manifest.u3i -------------------------------------------------------------------------------- /DittoSetup/mfc-crt/MFC71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt/MFC71.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt/mfc71u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt/mfc71u.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt/msvcp71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt/msvcp71.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt/msvcr71.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt64/mfc100u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt64/mfc100u.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt64/mfcm100u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt64/mfcm100u.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt64/msvcp100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt64/msvcp100.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt64/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt64/msvcr100.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt_10/mfc100u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt_10/mfc100u.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt_10/mfcm100u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt_10/mfcm100u.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt_10/msvcp100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt_10/msvcp100.dll -------------------------------------------------------------------------------- /DittoSetup/mfc-crt_10/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoSetup/mfc-crt_10/msvcr100.dll -------------------------------------------------------------------------------- /DittoSetup/portable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DittoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoWindow.cpp -------------------------------------------------------------------------------- /DittoWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/DittoWindow.h -------------------------------------------------------------------------------- /EditFrameWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EditFrameWnd.cpp -------------------------------------------------------------------------------- /EditFrameWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EditFrameWnd.h -------------------------------------------------------------------------------- /EditWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EditWnd.cpp -------------------------------------------------------------------------------- /EditWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EditWnd.h -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/EncryptDecrypt.plg -------------------------------------------------------------------------------- /EncryptDecrypt/EncryptDecrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/EncryptDecrypt.vcxproj -------------------------------------------------------------------------------- /EncryptDecrypt/Encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/Encryption.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/Encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/Encryption.h -------------------------------------------------------------------------------- /EncryptDecrypt/IEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/IEncryption.h -------------------------------------------------------------------------------- /EncryptDecrypt/MemUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/MemUtil.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/MemUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/MemUtil.h -------------------------------------------------------------------------------- /EncryptDecrypt/NewRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/NewRandom.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/NewRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/NewRandom.h -------------------------------------------------------------------------------- /EncryptDecrypt/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/Readme.txt -------------------------------------------------------------------------------- /EncryptDecrypt/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/StdAfx.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/StdAfx.h -------------------------------------------------------------------------------- /EncryptDecrypt/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/rijndael.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/rijndael.h -------------------------------------------------------------------------------- /EncryptDecrypt/sha2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/sha2.cpp -------------------------------------------------------------------------------- /EncryptDecrypt/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EncryptDecrypt/sha2.h -------------------------------------------------------------------------------- /EventThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EventThread.cpp -------------------------------------------------------------------------------- /EventThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/EventThread.h -------------------------------------------------------------------------------- /ExternalWindowTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ExternalWindowTracker.cpp -------------------------------------------------------------------------------- /ExternalWindowTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ExternalWindowTracker.h -------------------------------------------------------------------------------- /FileRecieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileRecieve.cpp -------------------------------------------------------------------------------- /FileRecieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileRecieve.h -------------------------------------------------------------------------------- /FileSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileSend.cpp -------------------------------------------------------------------------------- /FileSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileSend.h -------------------------------------------------------------------------------- /FileTransferProgressDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileTransferProgressDlg.cpp -------------------------------------------------------------------------------- /FileTransferProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FileTransferProgressDlg.h -------------------------------------------------------------------------------- /FormatSQL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FormatSQL.cpp -------------------------------------------------------------------------------- /FormatSQL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FormatSQL.h -------------------------------------------------------------------------------- /FormattedTextDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FormattedTextDraw.cpp -------------------------------------------------------------------------------- /FormattedTextDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FormattedTextDraw.h -------------------------------------------------------------------------------- /FriendDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FriendDetails.cpp -------------------------------------------------------------------------------- /FriendDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/FriendDetails.h -------------------------------------------------------------------------------- /GlobalClips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GlobalClips.cpp -------------------------------------------------------------------------------- /GlobalClips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GlobalClips.h -------------------------------------------------------------------------------- /GroupCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupCombo.cpp -------------------------------------------------------------------------------- /GroupCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupCombo.h -------------------------------------------------------------------------------- /GroupName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupName.cpp -------------------------------------------------------------------------------- /GroupName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupName.h -------------------------------------------------------------------------------- /GroupStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupStatic.cpp -------------------------------------------------------------------------------- /GroupStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupStatic.h -------------------------------------------------------------------------------- /GroupTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupTree.cpp -------------------------------------------------------------------------------- /GroupTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupTree.h -------------------------------------------------------------------------------- /GroupWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupWnd.cpp -------------------------------------------------------------------------------- /GroupWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/GroupWnd.h -------------------------------------------------------------------------------- /HListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HListBox.cpp -------------------------------------------------------------------------------- /HListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HListBox.h -------------------------------------------------------------------------------- /HTMLFormatAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HTMLFormatAggregator.cpp -------------------------------------------------------------------------------- /HTMLFormatAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HTMLFormatAggregator.h -------------------------------------------------------------------------------- /Help/DittoConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/DittoConfig.htm -------------------------------------------------------------------------------- /Help/DittoCustomKeys.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/DittoCustomKeys.htm -------------------------------------------------------------------------------- /Help/DittoFAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/DittoFAQ.htm -------------------------------------------------------------------------------- /Help/DittoGettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/DittoGettingStarted.htm -------------------------------------------------------------------------------- /Help/Dutch_DittoConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/Dutch_DittoConfig.htm -------------------------------------------------------------------------------- /Help/Dutch_DittoFAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/Dutch_DittoFAQ.htm -------------------------------------------------------------------------------- /Help/Dutch_DittoGettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/Dutch_DittoGettingStarted.htm -------------------------------------------------------------------------------- /Help/RegCustomKeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/RegCustomKeys.jpg -------------------------------------------------------------------------------- /Help/U3_Install.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Help/U3_Install.htm -------------------------------------------------------------------------------- /HotKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HotKeys.cpp -------------------------------------------------------------------------------- /HotKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HotKeys.h -------------------------------------------------------------------------------- /HyperLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HyperLink.cpp -------------------------------------------------------------------------------- /HyperLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/HyperLink.h -------------------------------------------------------------------------------- /IClipAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/IClipAggregator.h -------------------------------------------------------------------------------- /InternetUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/InternetUpdate.cpp -------------------------------------------------------------------------------- /InternetUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/InternetUpdate.h -------------------------------------------------------------------------------- /MagneticWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MagneticWnd.cpp -------------------------------------------------------------------------------- /MagneticWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MagneticWnd.h -------------------------------------------------------------------------------- /MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainFrm.cpp -------------------------------------------------------------------------------- /MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainFrm.h -------------------------------------------------------------------------------- /MainFrmThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainFrmThread.cpp -------------------------------------------------------------------------------- /MainFrmThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainFrmThread.h -------------------------------------------------------------------------------- /MainTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainTable.cpp -------------------------------------------------------------------------------- /MainTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainTable.h -------------------------------------------------------------------------------- /MainTableFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainTableFunctions.cpp -------------------------------------------------------------------------------- /MainTableFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MainTableFunctions.h -------------------------------------------------------------------------------- /MessagePumpThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MessagePumpThread.cpp -------------------------------------------------------------------------------- /MessagePumpThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MessagePumpThread.h -------------------------------------------------------------------------------- /Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Misc.cpp -------------------------------------------------------------------------------- /Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Misc.h -------------------------------------------------------------------------------- /MoveToGroupDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MoveToGroupDlg.cpp -------------------------------------------------------------------------------- /MoveToGroupDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MoveToGroupDlg.h -------------------------------------------------------------------------------- /MultiLanguage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MultiLanguage.cpp -------------------------------------------------------------------------------- /MultiLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/MultiLanguage.h -------------------------------------------------------------------------------- /NumberEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/NumberEdit.cpp -------------------------------------------------------------------------------- /NumberEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/NumberEdit.h -------------------------------------------------------------------------------- /OleClipSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OleClipSource.cpp -------------------------------------------------------------------------------- /OleClipSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OleClipSource.h -------------------------------------------------------------------------------- /OptionFriends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionFriends.cpp -------------------------------------------------------------------------------- /OptionFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionFriends.h -------------------------------------------------------------------------------- /Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Options.cpp -------------------------------------------------------------------------------- /Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Options.h -------------------------------------------------------------------------------- /OptionsCopyBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsCopyBuffers.cpp -------------------------------------------------------------------------------- /OptionsCopyBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsCopyBuffers.h -------------------------------------------------------------------------------- /OptionsGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsGeneral.cpp -------------------------------------------------------------------------------- /OptionsGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsGeneral.h -------------------------------------------------------------------------------- /OptionsKeyBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsKeyBoard.cpp -------------------------------------------------------------------------------- /OptionsKeyBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsKeyBoard.h -------------------------------------------------------------------------------- /OptionsQuickPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsQuickPaste.cpp -------------------------------------------------------------------------------- /OptionsQuickPaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsQuickPaste.h -------------------------------------------------------------------------------- /OptionsSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsSheet.cpp -------------------------------------------------------------------------------- /OptionsSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsSheet.h -------------------------------------------------------------------------------- /OptionsStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsStats.cpp -------------------------------------------------------------------------------- /OptionsStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsStats.h -------------------------------------------------------------------------------- /OptionsTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsTypes.cpp -------------------------------------------------------------------------------- /OptionsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsTypes.h -------------------------------------------------------------------------------- /OptionsUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsUtilities.cpp -------------------------------------------------------------------------------- /OptionsUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/OptionsUtilities.h -------------------------------------------------------------------------------- /Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Path.cpp -------------------------------------------------------------------------------- /Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Path.h -------------------------------------------------------------------------------- /PerfTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/PerfTimer.cpp -------------------------------------------------------------------------------- /PerfTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/PerfTimer.h -------------------------------------------------------------------------------- /Popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Popup.cpp -------------------------------------------------------------------------------- /Popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Popup.h -------------------------------------------------------------------------------- /ProcessCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProcessCopy.cpp -------------------------------------------------------------------------------- /ProcessCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProcessCopy.h -------------------------------------------------------------------------------- /ProcessPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProcessPaste.cpp -------------------------------------------------------------------------------- /ProcessPaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProcessPaste.h -------------------------------------------------------------------------------- /ProgressWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProgressWnd.cpp -------------------------------------------------------------------------------- /ProgressWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ProgressWnd.h -------------------------------------------------------------------------------- /QListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QListCtrl.cpp -------------------------------------------------------------------------------- /QListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QListCtrl.h -------------------------------------------------------------------------------- /QPasteWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QPasteWnd.cpp -------------------------------------------------------------------------------- /QPasteWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QPasteWnd.h -------------------------------------------------------------------------------- /QPasteWndThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QPasteWndThread.cpp -------------------------------------------------------------------------------- /QPasteWndThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QPasteWndThread.h -------------------------------------------------------------------------------- /QuickPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QuickPaste.cpp -------------------------------------------------------------------------------- /QuickPaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/QuickPaste.h -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /RecieveFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RecieveFile.cpp -------------------------------------------------------------------------------- /RecieveFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RecieveFile.h -------------------------------------------------------------------------------- /RecieveSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RecieveSocket.cpp -------------------------------------------------------------------------------- /RecieveSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RecieveSocket.h -------------------------------------------------------------------------------- /Release/focus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Release/focus.lib -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Resource.h -------------------------------------------------------------------------------- /RichEditCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RichEditCtrlEx.cpp -------------------------------------------------------------------------------- /RichEditCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RichEditCtrlEx.h -------------------------------------------------------------------------------- /RichTextAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RichTextAggregator.cpp -------------------------------------------------------------------------------- /RichTextAggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RichTextAggregator.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/ColourPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/ColourPicker.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/ColourPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/ColourPicker.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/ColourPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/ColourPopup.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/ColourPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/ColourPopup.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/StdioFileEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/StdioFileEx.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/External/StdioFileEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/External/StdioFileEx.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/FontComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/FontComboBox.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/FontComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/FontComboBox.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/RRECRuler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RRECRuler.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/RRECRuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RRECRuler.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/RRECToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RRECToolbar.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/RRECToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RRECToolbar.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/RulerRichEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RulerRichEdit.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/RulerRichEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RulerRichEdit.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/RulerRichEditCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RulerRichEditCtrl.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/RulerRichEditCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RulerRichEditCtrl.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/RulerRichEditCtrl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/RulerRichEditCtrl.rc -------------------------------------------------------------------------------- /RulerRichEditCtrl/SizeComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/SizeComboBox.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/SizeComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/SizeComboBox.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/StdGrfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/StdGrfx.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/StdGrfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/StdGrfx.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/TextFile/TextFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/TextFile/TextFile.cpp -------------------------------------------------------------------------------- /RulerRichEditCtrl/TextFile/TextFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/TextFile/TextFile.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/ids.h -------------------------------------------------------------------------------- /RulerRichEditCtrl/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/RulerRichEditCtrl/toolbar.bmp -------------------------------------------------------------------------------- /SaveAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SaveAnimation.cpp -------------------------------------------------------------------------------- /SaveAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SaveAnimation.h -------------------------------------------------------------------------------- /SearchEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SearchEditBox.cpp -------------------------------------------------------------------------------- /SearchEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SearchEditBox.h -------------------------------------------------------------------------------- /SelectDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SelectDB.cpp -------------------------------------------------------------------------------- /SelectDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SelectDB.h -------------------------------------------------------------------------------- /SendKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SendKeys.cpp -------------------------------------------------------------------------------- /SendKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SendKeys.h -------------------------------------------------------------------------------- /SendSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SendSocket.cpp -------------------------------------------------------------------------------- /SendSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SendSocket.h -------------------------------------------------------------------------------- /Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Server.cpp -------------------------------------------------------------------------------- /Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Server.h -------------------------------------------------------------------------------- /ServerDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ServerDefines.h -------------------------------------------------------------------------------- /Shared/ArrayEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/ArrayEx.h -------------------------------------------------------------------------------- /Shared/DittoDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/DittoDefines.h -------------------------------------------------------------------------------- /Shared/IAddinExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/IAddinExports.h -------------------------------------------------------------------------------- /Shared/IClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/IClip.h -------------------------------------------------------------------------------- /Shared/TextConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/TextConvert.cpp -------------------------------------------------------------------------------- /Shared/TextConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/TextConvert.h -------------------------------------------------------------------------------- /Shared/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/Tokenizer.cpp -------------------------------------------------------------------------------- /Shared/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Shared/Tokenizer.h -------------------------------------------------------------------------------- /ShowTaskBarIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ShowTaskBarIcon.cpp -------------------------------------------------------------------------------- /ShowTaskBarIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ShowTaskBarIcon.h -------------------------------------------------------------------------------- /StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/StdAfx.cpp -------------------------------------------------------------------------------- /StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/StdAfx.h -------------------------------------------------------------------------------- /SystemTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SystemTray.cpp -------------------------------------------------------------------------------- /SystemTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/SystemTray.h -------------------------------------------------------------------------------- /TabCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TabCtrl.cpp -------------------------------------------------------------------------------- /TabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TabCtrl.h -------------------------------------------------------------------------------- /Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Theme.cpp -------------------------------------------------------------------------------- /Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Theme.h -------------------------------------------------------------------------------- /TinyXml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinystr.h -------------------------------------------------------------------------------- /TinyXml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinyxml.h -------------------------------------------------------------------------------- /TinyXml/tinyxml.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinyxml.lib -------------------------------------------------------------------------------- /TinyXml/tinyxml64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinyxml64.lib -------------------------------------------------------------------------------- /TinyXml/tinyxmld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinyxmld.lib -------------------------------------------------------------------------------- /TinyXml/tinyxmld64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TinyXml/tinyxmld64.lib -------------------------------------------------------------------------------- /ToolTipEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ToolTipEx.cpp -------------------------------------------------------------------------------- /ToolTipEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/ToolTipEx.h -------------------------------------------------------------------------------- /TypesTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TypesTable.cpp -------------------------------------------------------------------------------- /TypesTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/TypesTable.h -------------------------------------------------------------------------------- /U3Stop/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/Resource.h -------------------------------------------------------------------------------- /U3Stop/U3Start.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Start.aps -------------------------------------------------------------------------------- /U3Stop/U3Start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Start.cpp -------------------------------------------------------------------------------- /U3Stop/U3Start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Start.h -------------------------------------------------------------------------------- /U3Stop/U3Start.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Start.rc -------------------------------------------------------------------------------- /U3Stop/U3Stop.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Stop.vcproj -------------------------------------------------------------------------------- /U3Stop/U3Stop.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/U3Stop.vcxproj -------------------------------------------------------------------------------- /U3Stop/res/U3Start.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/res/U3Start.ico -------------------------------------------------------------------------------- /U3Stop/res/U3Start.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/res/U3Start.manifest -------------------------------------------------------------------------------- /U3Stop/res/U3Start.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/res/U3Start.rc2 -------------------------------------------------------------------------------- /U3Stop/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/stdafx.cpp -------------------------------------------------------------------------------- /U3Stop/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/U3Stop/stdafx.h -------------------------------------------------------------------------------- /UnicodeMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/UnicodeMacros.h -------------------------------------------------------------------------------- /Version.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/Version.Lib -------------------------------------------------------------------------------- /WebSite/Dutch_DittoConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/Dutch_DittoConfig.htm -------------------------------------------------------------------------------- /WebSite/Dutch_DittoFAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/Dutch_DittoFAQ.htm -------------------------------------------------------------------------------- /WebSite/Dutch_DittoGettingStarted.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/Dutch_DittoGettingStarted.htm -------------------------------------------------------------------------------- /WebSite/ThumsUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/ThumsUp.png -------------------------------------------------------------------------------- /WebSite/changeHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/changeHistory.php -------------------------------------------------------------------------------- /WebSite/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/default.css -------------------------------------------------------------------------------- /WebSite/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/header.php -------------------------------------------------------------------------------- /WebSite/images/img01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/images/img01.gif -------------------------------------------------------------------------------- /WebSite/images/img02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/images/img02.gif -------------------------------------------------------------------------------- /WebSite/images/img03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/images/img03.gif -------------------------------------------------------------------------------- /WebSite/images/img04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/images/img04.gif -------------------------------------------------------------------------------- /WebSite/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/images/spacer.gif -------------------------------------------------------------------------------- /WebSite/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/index.php -------------------------------------------------------------------------------- /WebSite/rightSide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WebSite/rightSide.php -------------------------------------------------------------------------------- /WildCardMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WildCardMatch.cpp -------------------------------------------------------------------------------- /WildCardMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WildCardMatch.h -------------------------------------------------------------------------------- /WndEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WndEx.cpp -------------------------------------------------------------------------------- /WndEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/WndEx.h -------------------------------------------------------------------------------- /focusdll/focus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/focusdll/focus.rc -------------------------------------------------------------------------------- /focusdll/focus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/focusdll/focus.vcxproj -------------------------------------------------------------------------------- /focusdll/focusdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/focusdll/focusdll.cpp -------------------------------------------------------------------------------- /focusdll/focusdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/focusdll/focusdll.h -------------------------------------------------------------------------------- /focusdll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/focusdll/resource.h -------------------------------------------------------------------------------- /memdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/memdc.h -------------------------------------------------------------------------------- /res/CP_Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/CP_Main.ico -------------------------------------------------------------------------------- /res/CP_Main.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/CP_Main.rc2 -------------------------------------------------------------------------------- /res/CP_MainDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/CP_MainDoc.ico -------------------------------------------------------------------------------- /res/Ditto.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/Ditto.ico -------------------------------------------------------------------------------- /res/Ditto2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/Ditto2.ico -------------------------------------------------------------------------------- /res/Ditto2_NoCopyCb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/Ditto2_NoCopyCb.ico -------------------------------------------------------------------------------- /res/DittoNew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/DittoNew.ico -------------------------------------------------------------------------------- /res/Ditto_NoCopyCb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/Ditto_NoCopyCb.ico -------------------------------------------------------------------------------- /res/FILECOPY.AVI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/FILECOPY.AVI -------------------------------------------------------------------------------- /res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/Toolbar.bmp -------------------------------------------------------------------------------- /res/back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/back.bmp -------------------------------------------------------------------------------- /res/back1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/back1.bmp -------------------------------------------------------------------------------- /res/back2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/back2.bmp -------------------------------------------------------------------------------- /res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/bitmap1.bmp -------------------------------------------------------------------------------- /res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/bmp00001.bmp -------------------------------------------------------------------------------- /res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/bmp00002.bmp -------------------------------------------------------------------------------- /res/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/bmp00003.bmp -------------------------------------------------------------------------------- /res/closed_f.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/closed_f.bmp -------------------------------------------------------------------------------- /res/mainfram.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/mainfram.bmp -------------------------------------------------------------------------------- /res/open_fol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/open_fol.bmp -------------------------------------------------------------------------------- /res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/res/toolbar1.bmp -------------------------------------------------------------------------------- /sqlite/CppSQLite3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/CppSQLite3.cpp -------------------------------------------------------------------------------- /sqlite/CppSQLite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/CppSQLite3.h -------------------------------------------------------------------------------- /sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/shell.c -------------------------------------------------------------------------------- /sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/sqlite3.c -------------------------------------------------------------------------------- /sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/sqlite3.h -------------------------------------------------------------------------------- /sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zlib.lib -------------------------------------------------------------------------------- /zlib/zlib64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zlib64.lib -------------------------------------------------------------------------------- /zlib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zlibd.lib -------------------------------------------------------------------------------- /zlib/zlibd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberShadow/Ditto/HEAD/zlib/zlibd64.lib --------------------------------------------------------------------------------