├── app.ico ├── LICENSE.txt ├── README.txt ├── USBMeter.dll ├── web ├── index.html ├── taskicon.png ├── munin_graph.png ├── monitor_settings.png └── release_packages │ └── usbrh_monitor_20100711.zip ├── .gitignore ├── usbrh_monitor.rc ├── usbrh_monitor.cpp ├── usbrh_monitor.vcproj ├── usbrh_monitor.sln └── resource.h /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/app.ico -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/README.txt -------------------------------------------------------------------------------- /USBMeter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/USBMeter.dll -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/web/index.html -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | Debug 3 | Release 4 | *.ncb 5 | *.vcproj.*.user 6 | *.suo 7 | *.aps 8 | -------------------------------------------------------------------------------- /usbrh_monitor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/usbrh_monitor.rc -------------------------------------------------------------------------------- /web/taskicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/web/taskicon.png -------------------------------------------------------------------------------- /usbrh_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/usbrh_monitor.cpp -------------------------------------------------------------------------------- /web/munin_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/web/munin_graph.png -------------------------------------------------------------------------------- /usbrh_monitor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/usbrh_monitor.vcproj -------------------------------------------------------------------------------- /web/monitor_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/web/monitor_settings.png -------------------------------------------------------------------------------- /web/release_packages/usbrh_monitor_20100711.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misohena/usbrh_monitor/master/web/release_packages/usbrh_monitor_20100711.zip -------------------------------------------------------------------------------- /usbrh_monitor.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "usbrh_monitor", "usbrh_monitor.vcproj", "{A9C75D60-E584-4487-B325-948A6EB39927}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {A9C75D60-E584-4487-B325-948A6EB39927}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {A9C75D60-E584-4487-B325-948A6EB39927}.Debug|Win32.Build.0 = Debug|Win32 14 | {A9C75D60-E584-4487-B325-948A6EB39927}.Release|Win32.ActiveCfg = Release|Win32 15 | {A9C75D60-E584-4487-B325-948A6EB39927}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by usbrh_monitor.rc 4 | // 5 | #define IDD_MAIN 101 6 | #define IDC_STATIC_STATUS 1001 7 | #define IDC_EDIT_OUTPUT_FILE 1003 8 | #define IDC_EDIT2 1004 9 | #define IDC_EDIT_OUTPUT_URL 1004 10 | #define ID_POPUP_ABOUT 40001 11 | #define ID_POPUP_EXIT 40002 12 | #define IDM_EXIT 40003 13 | #define IDM_ABOUT 40004 14 | #define ID_POPUP_MONITORSETTINGS 40005 15 | #define IDM_MONITOR 40006 16 | 17 | // Next default values for new objects 18 | // 19 | #ifdef APSTUDIO_INVOKED 20 | #ifndef APSTUDIO_READONLY_SYMBOLS 21 | #define _APS_NEXT_RESOURCE_VALUE 104 22 | #define _APS_NEXT_COMMAND_VALUE 40007 23 | #define _APS_NEXT_CONTROL_VALUE 1005 24 | #define _APS_NEXT_SYMED_VALUE 101 25 | #endif 26 | #endif 27 | --------------------------------------------------------------------------------