| 31 | } |
| 32 | |
| 33 | af_err af_set_position(const af_window wind, const unsigned x, |
| 34 | const unsigned y) { |
| 35 | try { |
| 36 | if (wind == 0) { AF_ERROR("Not a valid window", AF_ERR_INTERNAL); } |
| 37 | FG_CHECK(forgePlugin().fg_set_window_position(wind, x, y)); |
| 38 | } |
| 39 | CATCHALL; |
| 40 | return AF_SUCCESS; |
| 41 | } |
| 42 | |
| 43 | af_err af_set_title(const af_window wind, const char* const title) { |
| 44 | try { |