#include "form.priv.h"Go to the source code of this file.
Functions | |
| set_form_sub (FORM *form, WINDOW *win) | |
| form_sub (const FORM *form) | |
|
|
Definition at line 67 of file frm_sub.c. References Get_Form_Window, Normalize_Form, returnWin, T, and T_CALLED. 00068 { 00069 const FORM *f; 00070 00071 T((T_CALLED("form_sub(%p)"), form)); 00072 00073 f = Normalize_Form(form); 00074 returnWin(Get_Form_Window(f)); 00075 }
|
|
||||||||||||
|
Definition at line 47 of file frm_sub.c. References _POSTED, E_OK, E_POSTED, Normalize_Form, RETURN, T, and T_CALLED. 00048 { 00049 T((T_CALLED("set_form_sub(%p,%p)"), form, win)); 00050 00051 if (form && (form->status & _POSTED)) 00052 RETURN(E_POSTED); 00053 00054 Normalize_Form(form)->sub = win; 00055 RETURN(E_OK); 00056 }
|