#include "form.priv.h"Go to the source code of this file.
Functions | |
| pos_form_cursor (FORM *form) | |
|
|
Definition at line 52 of file frm_cursor.c. References _nc_Position_Form_Cursor(), _POSTED, E_BAD_ARGUMENT, E_NOT_POSTED, RETURN, T, and T_CALLED. Referenced by NCursesForm::position_cursor(). 00053 { 00054 int res; 00055 00056 T((T_CALLED("pos_form_cursor(%p)"), form)); 00057 00058 if (!form) 00059 res = E_BAD_ARGUMENT; 00060 else 00061 { 00062 if (!(form->status & _POSTED)) 00063 res = E_NOT_POSTED; 00064 else 00065 res = _nc_Position_Form_Cursor(form); 00066 } 00067 RETURN(res); 00068 }
|