├── .gitignore ├── LICENSE ├── README.md ├── SageLinks.sln ├── SageLinks ├── DialogExSized.cpp ├── DialogExSized.h ├── SageLinks.cpp ├── SageLinks.h ├── SageLinks.rc ├── SageLinks.vcxproj ├── SageLinks.vcxproj.filters ├── SageLinksDlg.cpp ├── SageLinksDlg.h ├── SageLinksThread.cpp ├── Shell.h ├── ShellMenu.h ├── WindowsXP.props ├── packages.config ├── res │ ├── SageLinks.ico │ ├── SageLinks.rc2 │ ├── appx.ico │ ├── error.ico │ ├── junction.ico │ ├── shortcut.ico │ ├── success.ico │ ├── symbolic.ico │ └── unknown.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h └── setup ├── setup.iss ├── setup.props ├── vc_redist.x64.exe ├── vc_redist.x86.exe └── vcredist.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/README.md -------------------------------------------------------------------------------- /SageLinks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks.sln -------------------------------------------------------------------------------- /SageLinks/DialogExSized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/DialogExSized.cpp -------------------------------------------------------------------------------- /SageLinks/DialogExSized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/DialogExSized.h -------------------------------------------------------------------------------- /SageLinks/SageLinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinks.cpp -------------------------------------------------------------------------------- /SageLinks/SageLinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinks.h -------------------------------------------------------------------------------- /SageLinks/SageLinks.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinks.rc -------------------------------------------------------------------------------- /SageLinks/SageLinks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinks.vcxproj -------------------------------------------------------------------------------- /SageLinks/SageLinks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinks.vcxproj.filters -------------------------------------------------------------------------------- /SageLinks/SageLinksDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinksDlg.cpp -------------------------------------------------------------------------------- /SageLinks/SageLinksDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinksDlg.h -------------------------------------------------------------------------------- /SageLinks/SageLinksThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/SageLinksThread.cpp -------------------------------------------------------------------------------- /SageLinks/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/Shell.h -------------------------------------------------------------------------------- /SageLinks/ShellMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/ShellMenu.h -------------------------------------------------------------------------------- /SageLinks/WindowsXP.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/WindowsXP.props -------------------------------------------------------------------------------- /SageLinks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/packages.config -------------------------------------------------------------------------------- /SageLinks/res/SageLinks.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/SageLinks.ico -------------------------------------------------------------------------------- /SageLinks/res/SageLinks.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/SageLinks.rc2 -------------------------------------------------------------------------------- /SageLinks/res/appx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/appx.ico -------------------------------------------------------------------------------- /SageLinks/res/error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/error.ico -------------------------------------------------------------------------------- /SageLinks/res/junction.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/junction.ico -------------------------------------------------------------------------------- /SageLinks/res/shortcut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/shortcut.ico -------------------------------------------------------------------------------- /SageLinks/res/success.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/success.ico -------------------------------------------------------------------------------- /SageLinks/res/symbolic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/symbolic.ico -------------------------------------------------------------------------------- /SageLinks/res/unknown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/res/unknown.ico -------------------------------------------------------------------------------- /SageLinks/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/resource.h -------------------------------------------------------------------------------- /SageLinks/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/stdafx.cpp -------------------------------------------------------------------------------- /SageLinks/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/stdafx.h -------------------------------------------------------------------------------- /SageLinks/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/SageLinks/targetver.h -------------------------------------------------------------------------------- /setup/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/setup/setup.iss -------------------------------------------------------------------------------- /setup/setup.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/setup/setup.props -------------------------------------------------------------------------------- /setup/vc_redist.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/setup/vc_redist.x64.exe -------------------------------------------------------------------------------- /setup/vc_redist.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/setup/vc_redist.x86.exe -------------------------------------------------------------------------------- /setup/vcredist.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspopov/SageLinks/HEAD/setup/vcredist.iss --------------------------------------------------------------------------------