libfmd_agent: make fmd_agent_cpu_* visible even on 64-bit
[unleashed.git] / contrib / ncurses / form / frm_hook.c
blob8c36cb39004fd4dc66c7094e1d8350978c4d0b05
1 /****************************************************************************
2 * Copyright (c) 1998-2012,2016 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer, 1995,1997 *
31 ****************************************************************************/
33 #include "form.priv.h"
35 MODULE_ID("$Id: frm_hook.c,v 1.17 2016/01/23 21:32:00 tom Exp $")
37 /* "Template" macro to generate function to set application specific hook */
38 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
39 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
41 T((T_CALLED("set_" #typ"_"#name"(%p,%p)"), (void *) form, TR_FUNC(func)));\
42 (Normalize_Form( form ) -> typ ## name) = func ;\
43 RETURN(E_OK);\
46 /* "Template" macro to generate function to get application specific hook */
47 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
48 NCURSES_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
50 T((T_CALLED(#typ "_" #name "(%p)"), (const void *) form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\
54 /*---------------------------------------------------------------------------
55 | Facility : libnform
56 | Function : int set_field_init(FORM *form, Form_Hook f)
58 | Description : Assigns an application defined initialization function
59 | to be called when the form is posted and just after
60 | the current field changes.
62 | Return Values : E_OK - success
63 +--------------------------------------------------------------------------*/
64 GEN_HOOK_SET_FUNCTION(field, init)
66 /*---------------------------------------------------------------------------
67 | Facility : libnform
68 | Function : Form_Hook field_init(const FORM *form)
70 | Description : Retrieve field initialization routine address.
72 | Return Values : The address or NULL if no hook defined.
73 +--------------------------------------------------------------------------*/
74 GEN_HOOK_GET_FUNCTION(field, init)
76 /*---------------------------------------------------------------------------
77 | Facility : libnform
78 | Function : int set_field_term(FORM *form, Form_Hook f)
80 | Description : Assigns an application defined finalization function
81 | to be called when the form is unposted and just before
82 | the current field changes.
84 | Return Values : E_OK - success
85 +--------------------------------------------------------------------------*/
86 GEN_HOOK_SET_FUNCTION(field, term)
88 /*---------------------------------------------------------------------------
89 | Facility : libnform
90 | Function : Form_Hook field_term(const FORM *form)
92 | Description : Retrieve field finalization routine address.
94 | Return Values : The address or NULL if no hook defined.
95 +--------------------------------------------------------------------------*/
96 GEN_HOOK_GET_FUNCTION(field, term)
98 /*---------------------------------------------------------------------------
99 | Facility : libnform
100 | Function : int set_form_init(FORM *form, Form_Hook f)
102 | Description : Assigns an application defined initialization function
103 | to be called when the form is posted and just after
104 | a page change.
106 | Return Values : E_OK - success
107 +--------------------------------------------------------------------------*/
108 GEN_HOOK_SET_FUNCTION(form, init)
110 /*---------------------------------------------------------------------------
111 | Facility : libnform
112 | Function : Form_Hook form_init(const FORM *form)
114 | Description : Retrieve form initialization routine address.
116 | Return Values : The address or NULL if no hook defined.
117 +--------------------------------------------------------------------------*/
118 GEN_HOOK_GET_FUNCTION(form, init)
120 /*---------------------------------------------------------------------------
121 | Facility : libnform
122 | Function : int set_form_term(FORM *form, Form_Hook f)
124 | Description : Assigns an application defined finalization function
125 | to be called when the form is unposted and just before
126 | a page change.
128 | Return Values : E_OK - success
129 +--------------------------------------------------------------------------*/
130 GEN_HOOK_SET_FUNCTION(form, term)
132 /*---------------------------------------------------------------------------
133 | Facility : libnform
134 | Function : Form_Hook form_term(const FORM *form)
136 | Description : Retrieve form finalization routine address.
138 | Return Values : The address or NULL if no hook defined.
139 +--------------------------------------------------------------------------*/
140 GEN_HOOK_GET_FUNCTION(form, term)
142 /* frm_hook.c ends here */