├── .gitignore ├── HideTrayIcon.sln ├── README.md ├── README_EN.md ├── SnapShots ├── eg_cn.jpg └── eg_en.jpg ├── cmdline.h ├── consts.h ├── hideORshowIcons.vbs ├── hideTrayIcon.exe ├── hideTrayIcon.vbs ├── main.cpp ├── tray_icon.cpp ├── tray_icon.h ├── util.cpp └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/.gitignore -------------------------------------------------------------------------------- /HideTrayIcon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/HideTrayIcon.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/README_EN.md -------------------------------------------------------------------------------- /SnapShots/eg_cn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/SnapShots/eg_cn.jpg -------------------------------------------------------------------------------- /SnapShots/eg_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/SnapShots/eg_en.jpg -------------------------------------------------------------------------------- /cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/cmdline.h -------------------------------------------------------------------------------- /consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/consts.h -------------------------------------------------------------------------------- /hideORshowIcons.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/hideORshowIcons.vbs -------------------------------------------------------------------------------- /hideTrayIcon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/hideTrayIcon.exe -------------------------------------------------------------------------------- /hideTrayIcon.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/hideTrayIcon.vbs -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/main.cpp -------------------------------------------------------------------------------- /tray_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/tray_icon.cpp -------------------------------------------------------------------------------- /tray_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/tray_icon.h -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/util.cpp -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCiZY/HideTrayIcon/HEAD/util.h --------------------------------------------------------------------------------