├── .gitignore ├── README.md ├── appveyor.yml ├── config-kt.txt ├── format-kt.txt ├── lang ├── tclang-ja.txt ├── tclang.txt ├── tcmenu-ja.txt └── tcmenu.txt ├── make_all.bat ├── pack.bat ├── prepare_custom.bat ├── readme-kt.txt ├── readme.html ├── source ├── Makefile ├── common │ ├── alarmstruct.c │ ├── autoformat.c │ ├── bccexe.nas │ ├── combobox.c │ ├── command.h │ ├── common.h │ ├── exec.c │ ├── font.c │ ├── langcode.c │ ├── list.c │ ├── localeinfo.c │ ├── mixer.c │ ├── mousestruct.c │ ├── nodeflib.c │ ├── playfile.c │ ├── reg.c │ ├── selectfile.c │ ├── soundselect.c │ ├── tclang.c │ ├── utl.c │ └── vistavol.cpp ├── config.h ├── dll │ ├── battery.c │ ├── bccdll.nas │ ├── bmp.c │ ├── cpu.c │ ├── desktop.c │ ├── dllutl.c │ ├── draw.c │ ├── format.c │ ├── formattime.c │ ├── hdd.c │ ├── main.c │ ├── main2.c │ ├── net.c │ ├── newapi.c │ ├── newapi.h │ ├── startbtn.c │ ├── startmenu.c │ ├── sysinfo.c │ ├── taskbar.c │ ├── taskswitch.c │ ├── tcdll.def │ ├── tcdll.h │ ├── tcdll.mak │ ├── tcdll.rc │ ├── tooltip.c │ ├── traynotify.c │ ├── userstr.c │ └── wndproc.c ├── exe │ ├── about.c │ ├── alarm.c │ ├── cmdopt.c │ ├── command.c │ ├── main.c │ ├── main2.c │ ├── menu.c │ ├── mouse.c │ ├── mouse2.c │ ├── tclock.h │ ├── tclock.ico │ ├── tclock.mak │ ├── tclock.manifest │ ├── tclock.rc │ └── wndproc.c ├── license.txt ├── player │ ├── dialog.c │ ├── main.c │ ├── player.c │ ├── resource.h │ ├── tclock.ico │ ├── tclock.manifest │ ├── tcplayer.h │ ├── tcplayer.ico │ ├── tcplayer.mak │ └── tcplayer.rc ├── property │ ├── alarmday.c │ ├── main.c │ ├── pagealarm.c │ ├── pageanalog.c │ ├── pagecolor.c │ ├── pagecuckoo.c │ ├── pageformat.c │ ├── pageformat2.c │ ├── pagemisc.c │ ├── pagemouse.c │ ├── pagemouse2.c │ ├── pagesize.c │ ├── pagestartbtn.c │ ├── pagestartmenu.c │ ├── pagetaskbar.c │ ├── pagetooltip.c │ ├── play.ico │ ├── resource.h │ ├── selecticon.c │ ├── stop.ico │ ├── tclock.ico │ ├── tclock.manifest │ ├── tcprop.h │ ├── tcprop.ico │ ├── tcprop.mak │ └── tcprop.rc ├── readme.txt ├── sntp │ ├── dialog.c │ ├── main.c │ ├── play.ico │ ├── resource.h │ ├── sntp.c │ ├── stop.ico │ ├── tclock.ico │ ├── tclock.manifest │ ├── tcsntp.h │ ├── tcsntp.ico │ ├── tcsntp.mak │ └── tcsntp.rc └── timer │ ├── dialog.c │ ├── main.c │ ├── play.ico │ ├── resource.h │ ├── stop.ico │ ├── tclock.ico │ ├── tclock.manifest │ ├── tctimer.h │ ├── tctimer.ico │ ├── tctimer.mak │ ├── tctimer.rc │ └── timer.c ├── source_all ├── Makefile └── config.h └── source_custom ├── Makefile └── config.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config-kt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/config-kt.txt -------------------------------------------------------------------------------- /format-kt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/format-kt.txt -------------------------------------------------------------------------------- /lang/tclang-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/lang/tclang-ja.txt -------------------------------------------------------------------------------- /lang/tclang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/lang/tclang.txt -------------------------------------------------------------------------------- /lang/tcmenu-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/lang/tcmenu-ja.txt -------------------------------------------------------------------------------- /lang/tcmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/lang/tcmenu.txt -------------------------------------------------------------------------------- /make_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/make_all.bat -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/pack.bat -------------------------------------------------------------------------------- /prepare_custom.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/prepare_custom.bat -------------------------------------------------------------------------------- /readme-kt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/readme-kt.txt -------------------------------------------------------------------------------- /readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/readme.html -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/common/alarmstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/alarmstruct.c -------------------------------------------------------------------------------- /source/common/autoformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/autoformat.c -------------------------------------------------------------------------------- /source/common/bccexe.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/bccexe.nas -------------------------------------------------------------------------------- /source/common/combobox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/combobox.c -------------------------------------------------------------------------------- /source/common/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/command.h -------------------------------------------------------------------------------- /source/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/common.h -------------------------------------------------------------------------------- /source/common/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/exec.c -------------------------------------------------------------------------------- /source/common/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/font.c -------------------------------------------------------------------------------- /source/common/langcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/langcode.c -------------------------------------------------------------------------------- /source/common/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/list.c -------------------------------------------------------------------------------- /source/common/localeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/localeinfo.c -------------------------------------------------------------------------------- /source/common/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/mixer.c -------------------------------------------------------------------------------- /source/common/mousestruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/mousestruct.c -------------------------------------------------------------------------------- /source/common/nodeflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/nodeflib.c -------------------------------------------------------------------------------- /source/common/playfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/playfile.c -------------------------------------------------------------------------------- /source/common/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/reg.c -------------------------------------------------------------------------------- /source/common/selectfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/selectfile.c -------------------------------------------------------------------------------- /source/common/soundselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/soundselect.c -------------------------------------------------------------------------------- /source/common/tclang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/tclang.c -------------------------------------------------------------------------------- /source/common/utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/utl.c -------------------------------------------------------------------------------- /source/common/vistavol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/common/vistavol.cpp -------------------------------------------------------------------------------- /source/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/config.h -------------------------------------------------------------------------------- /source/dll/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/battery.c -------------------------------------------------------------------------------- /source/dll/bccdll.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/bccdll.nas -------------------------------------------------------------------------------- /source/dll/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/bmp.c -------------------------------------------------------------------------------- /source/dll/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/cpu.c -------------------------------------------------------------------------------- /source/dll/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/desktop.c -------------------------------------------------------------------------------- /source/dll/dllutl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/dllutl.c -------------------------------------------------------------------------------- /source/dll/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/draw.c -------------------------------------------------------------------------------- /source/dll/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/format.c -------------------------------------------------------------------------------- /source/dll/formattime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/formattime.c -------------------------------------------------------------------------------- /source/dll/hdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/hdd.c -------------------------------------------------------------------------------- /source/dll/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/main.c -------------------------------------------------------------------------------- /source/dll/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/main2.c -------------------------------------------------------------------------------- /source/dll/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/net.c -------------------------------------------------------------------------------- /source/dll/newapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/newapi.c -------------------------------------------------------------------------------- /source/dll/newapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/newapi.h -------------------------------------------------------------------------------- /source/dll/startbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/startbtn.c -------------------------------------------------------------------------------- /source/dll/startmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/startmenu.c -------------------------------------------------------------------------------- /source/dll/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/sysinfo.c -------------------------------------------------------------------------------- /source/dll/taskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/taskbar.c -------------------------------------------------------------------------------- /source/dll/taskswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/taskswitch.c -------------------------------------------------------------------------------- /source/dll/tcdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/tcdll.def -------------------------------------------------------------------------------- /source/dll/tcdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/tcdll.h -------------------------------------------------------------------------------- /source/dll/tcdll.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/tcdll.mak -------------------------------------------------------------------------------- /source/dll/tcdll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/tcdll.rc -------------------------------------------------------------------------------- /source/dll/tooltip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/tooltip.c -------------------------------------------------------------------------------- /source/dll/traynotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/traynotify.c -------------------------------------------------------------------------------- /source/dll/userstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/userstr.c -------------------------------------------------------------------------------- /source/dll/wndproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/dll/wndproc.c -------------------------------------------------------------------------------- /source/exe/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/about.c -------------------------------------------------------------------------------- /source/exe/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/alarm.c -------------------------------------------------------------------------------- /source/exe/cmdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/cmdopt.c -------------------------------------------------------------------------------- /source/exe/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/command.c -------------------------------------------------------------------------------- /source/exe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/main.c -------------------------------------------------------------------------------- /source/exe/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/main2.c -------------------------------------------------------------------------------- /source/exe/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/menu.c -------------------------------------------------------------------------------- /source/exe/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/mouse.c -------------------------------------------------------------------------------- /source/exe/mouse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/mouse2.c -------------------------------------------------------------------------------- /source/exe/tclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/tclock.h -------------------------------------------------------------------------------- /source/exe/tclock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/tclock.ico -------------------------------------------------------------------------------- /source/exe/tclock.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/tclock.mak -------------------------------------------------------------------------------- /source/exe/tclock.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/tclock.manifest -------------------------------------------------------------------------------- /source/exe/tclock.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/tclock.rc -------------------------------------------------------------------------------- /source/exe/wndproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/exe/wndproc.c -------------------------------------------------------------------------------- /source/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/license.txt -------------------------------------------------------------------------------- /source/player/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/dialog.c -------------------------------------------------------------------------------- /source/player/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/main.c -------------------------------------------------------------------------------- /source/player/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/player.c -------------------------------------------------------------------------------- /source/player/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/resource.h -------------------------------------------------------------------------------- /source/player/tclock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tclock.ico -------------------------------------------------------------------------------- /source/player/tclock.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tclock.manifest -------------------------------------------------------------------------------- /source/player/tcplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tcplayer.h -------------------------------------------------------------------------------- /source/player/tcplayer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tcplayer.ico -------------------------------------------------------------------------------- /source/player/tcplayer.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tcplayer.mak -------------------------------------------------------------------------------- /source/player/tcplayer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/player/tcplayer.rc -------------------------------------------------------------------------------- /source/property/alarmday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/alarmday.c -------------------------------------------------------------------------------- /source/property/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/main.c -------------------------------------------------------------------------------- /source/property/pagealarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagealarm.c -------------------------------------------------------------------------------- /source/property/pageanalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pageanalog.c -------------------------------------------------------------------------------- /source/property/pagecolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagecolor.c -------------------------------------------------------------------------------- /source/property/pagecuckoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagecuckoo.c -------------------------------------------------------------------------------- /source/property/pageformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pageformat.c -------------------------------------------------------------------------------- /source/property/pageformat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pageformat2.c -------------------------------------------------------------------------------- /source/property/pagemisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagemisc.c -------------------------------------------------------------------------------- /source/property/pagemouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagemouse.c -------------------------------------------------------------------------------- /source/property/pagemouse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagemouse2.c -------------------------------------------------------------------------------- /source/property/pagesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagesize.c -------------------------------------------------------------------------------- /source/property/pagestartbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagestartbtn.c -------------------------------------------------------------------------------- /source/property/pagestartmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagestartmenu.c -------------------------------------------------------------------------------- /source/property/pagetaskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagetaskbar.c -------------------------------------------------------------------------------- /source/property/pagetooltip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/pagetooltip.c -------------------------------------------------------------------------------- /source/property/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/play.ico -------------------------------------------------------------------------------- /source/property/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/resource.h -------------------------------------------------------------------------------- /source/property/selecticon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/selecticon.c -------------------------------------------------------------------------------- /source/property/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/stop.ico -------------------------------------------------------------------------------- /source/property/tclock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tclock.ico -------------------------------------------------------------------------------- /source/property/tclock.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tclock.manifest -------------------------------------------------------------------------------- /source/property/tcprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tcprop.h -------------------------------------------------------------------------------- /source/property/tcprop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tcprop.ico -------------------------------------------------------------------------------- /source/property/tcprop.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tcprop.mak -------------------------------------------------------------------------------- /source/property/tcprop.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/property/tcprop.rc -------------------------------------------------------------------------------- /source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/readme.txt -------------------------------------------------------------------------------- /source/sntp/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/dialog.c -------------------------------------------------------------------------------- /source/sntp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/main.c -------------------------------------------------------------------------------- /source/sntp/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/play.ico -------------------------------------------------------------------------------- /source/sntp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/resource.h -------------------------------------------------------------------------------- /source/sntp/sntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/sntp.c -------------------------------------------------------------------------------- /source/sntp/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/stop.ico -------------------------------------------------------------------------------- /source/sntp/tclock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tclock.ico -------------------------------------------------------------------------------- /source/sntp/tclock.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tclock.manifest -------------------------------------------------------------------------------- /source/sntp/tcsntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tcsntp.h -------------------------------------------------------------------------------- /source/sntp/tcsntp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tcsntp.ico -------------------------------------------------------------------------------- /source/sntp/tcsntp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tcsntp.mak -------------------------------------------------------------------------------- /source/sntp/tcsntp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/sntp/tcsntp.rc -------------------------------------------------------------------------------- /source/timer/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/dialog.c -------------------------------------------------------------------------------- /source/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/main.c -------------------------------------------------------------------------------- /source/timer/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/play.ico -------------------------------------------------------------------------------- /source/timer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/resource.h -------------------------------------------------------------------------------- /source/timer/stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/stop.ico -------------------------------------------------------------------------------- /source/timer/tclock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tclock.ico -------------------------------------------------------------------------------- /source/timer/tclock.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tclock.manifest -------------------------------------------------------------------------------- /source/timer/tctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tctimer.h -------------------------------------------------------------------------------- /source/timer/tctimer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tctimer.ico -------------------------------------------------------------------------------- /source/timer/tctimer.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tctimer.mak -------------------------------------------------------------------------------- /source/timer/tctimer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/tctimer.rc -------------------------------------------------------------------------------- /source/timer/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source/timer/timer.c -------------------------------------------------------------------------------- /source_all/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source_all/Makefile -------------------------------------------------------------------------------- /source_all/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source_all/config.h -------------------------------------------------------------------------------- /source_custom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source_custom/Makefile -------------------------------------------------------------------------------- /source_custom/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-takata/TClockLight/HEAD/source_custom/config.h --------------------------------------------------------------------------------