| 302 | |
| 303 | |
| 304 | BIF_DECL(BIF_TraySetIcon) |
| 305 | { |
| 306 | if (!g_script.SetTrayIcon( |
| 307 | ParamIndexToOptionalString(0, _f_number_buf) // buf is provided for error-reporting purposes. |
| 308 | , ParamIndexToOptionalInt(1, 1) |
| 309 | , ParamIndexIsOmitted(2) ? NEUTRAL : ParamIndexToBOOL(2) ? TOGGLED_ON : TOGGLED_OFF)) |
| 310 | _f_return_FAIL; |
| 311 | _f_return_empty; |
| 312 | } |
| 313 | |
| 314 | |
| 315 |
nothing calls this directly
no test coverage detected