在shell中对字符串进行去除空格的处理代码:
echo ${str// /}
echo $str | sed 's/ //g'
echo $str | tr -d " "
Shell_NotifyIcon,函数名,主要用于向任务栏的状态栏发送一个消息。
函数原型:
BOOL Shell_NotifyIcon
(
DWORD dwMessage,
PNOTIFYICONDATA lpdata
)