| 153 | } |
| 154 | |
| 155 | fg_err fg_get_window_width(int *pWidth, const fg_window pWindow) |
| 156 | { |
| 157 | try { |
| 158 | ARG_ASSERT(1, (pWindow!=0)); |
| 159 | |
| 160 | *pWidth = getWindow(pWindow)->width(); |
| 161 | } |
| 162 | CATCHALL |
| 163 | return FG_ERR_NONE; |
| 164 | } |
| 165 | |
| 166 | fg_err fg_get_window_height(int *pHeight, const fg_window pWindow) |
| 167 | { |