| 272 | } |
| 273 | |
| 274 | af_err af_is_window_closed(bool* out, const af_window wind) { |
| 275 | try { |
| 276 | if (wind == 0) { AF_ERROR("Not a valid window", AF_ERR_INTERNAL); } |
| 277 | FG_CHECK(forgePlugin().fg_close_window(out, wind)); |
| 278 | } |
| 279 | CATCHALL; |
| 280 | return AF_SUCCESS; |
| 281 | } |
| 282 | |
| 283 | af_err af_set_visibility(const af_window wind, const bool is_visible) { |
| 284 | try { |