| 164 | } |
| 165 | |
| 166 | fg_err fg_get_window_height(int *pHeight, const fg_window pWindow) |
| 167 | { |
| 168 | try { |
| 169 | ARG_ASSERT(1, (pWindow!=0)); |
| 170 | |
| 171 | *pHeight = getWindow(pWindow)->height(); |
| 172 | } |
| 173 | CATCHALL |
| 174 | return FG_ERR_NONE; |
| 175 | } |
| 176 | |
| 177 | fg_err fg_make_window_current(const fg_window pWindow) |
| 178 | { |