├── .gitignore ├── LICENSE ├── NetSpeed.sln ├── NetSpeed ├── Dialog │ ├── Dialog.h │ ├── Dialog_Main │ │ ├── Dialog_Main.cpp │ │ └── Dialog_Main.h │ └── Dialog_Setting │ │ ├── Dialog_Setting.cpp │ │ └── Dialog_Setting.h ├── Main.cpp ├── Main.h ├── Menu.hpp ├── NetSpeed.vcxproj ├── NetSpeed.vcxproj.filters ├── NotifyIcon.hpp ├── Registry.hpp ├── Resource │ ├── Icon_Main.ico │ ├── NetSpeed.rc │ ├── WM_USER.h │ └── resource.h ├── Text.hpp └── Timer_Refresh.hpp ├── README.md └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/LICENSE -------------------------------------------------------------------------------- /NetSpeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed.sln -------------------------------------------------------------------------------- /NetSpeed/Dialog/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Dialog/Dialog.h -------------------------------------------------------------------------------- /NetSpeed/Dialog/Dialog_Main/Dialog_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Dialog/Dialog_Main/Dialog_Main.cpp -------------------------------------------------------------------------------- /NetSpeed/Dialog/Dialog_Main/Dialog_Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Dialog/Dialog_Main/Dialog_Main.h -------------------------------------------------------------------------------- /NetSpeed/Dialog/Dialog_Setting/Dialog_Setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Dialog/Dialog_Setting/Dialog_Setting.cpp -------------------------------------------------------------------------------- /NetSpeed/Dialog/Dialog_Setting/Dialog_Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Dialog/Dialog_Setting/Dialog_Setting.h -------------------------------------------------------------------------------- /NetSpeed/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Main.cpp -------------------------------------------------------------------------------- /NetSpeed/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Main.h -------------------------------------------------------------------------------- /NetSpeed/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Menu.hpp -------------------------------------------------------------------------------- /NetSpeed/NetSpeed.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/NetSpeed.vcxproj -------------------------------------------------------------------------------- /NetSpeed/NetSpeed.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/NetSpeed.vcxproj.filters -------------------------------------------------------------------------------- /NetSpeed/NotifyIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/NotifyIcon.hpp -------------------------------------------------------------------------------- /NetSpeed/Registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Registry.hpp -------------------------------------------------------------------------------- /NetSpeed/Resource/Icon_Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Resource/Icon_Main.ico -------------------------------------------------------------------------------- /NetSpeed/Resource/NetSpeed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Resource/NetSpeed.rc -------------------------------------------------------------------------------- /NetSpeed/Resource/WM_USER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Resource/WM_USER.h -------------------------------------------------------------------------------- /NetSpeed/Resource/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Resource/resource.h -------------------------------------------------------------------------------- /NetSpeed/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Text.hpp -------------------------------------------------------------------------------- /NetSpeed/Timer_Refresh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/NetSpeed/Timer_Refresh.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/README.md -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCGDF/NetSpeed/HEAD/todo.txt --------------------------------------------------------------------------------