1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File : $Source: /home/tina/cvs/tina-tools/tinatool/wdgts/null/wdgtsNull_tw_choice.c,v $
37 * Date : $Date: 2009/03/25 13:37:03 $
38 * Version : $Revision: 1.3 $
39 * CVS Id : $Id: wdgtsNull_tw_choice.c,v 1.3 2009/03/25 13:37:03 paul Exp $
40 *
41 * Author : Legacy TINA
42 *
43 * Notes : tw_choice.c
44 *
45 *********
46 */
47
48 #include "wdgtsNull_tw_choice.h"
49
50 #if HAVE_CONFIG_H
51 # include <config.h>
52 #endif
53
54 #include <stdio.h>
55
56 #if HAVE_STDARG_H
57 # include <stdarg.h>
58 # define VA_START(a, f) va_start(a, f)
59 #else
60 # if HAVE_VARARGS_H
61 # include <varargs.h>
62 # define VA_START(a, f) va_start(a)
63 # endif
64 #endif /* HAVE_STDARG_H */
65 #ifndef VA_START
66 error no variadic api available
67 #endif
68
69 #include <tinatool/wdgts/null/wdgts_NullDef.h>
70 #include <tina/sys/sysDef.h>
71
72
73 void tw_choice_list_style_select(int style)
74 {
75 /* Required for GTK: not used in other widget sets */
76 }
77
78 Tw_callback
79 #if HAVE_STDARG_H
80 *tw_choice(char *name, ...)
81 #else
82 tw_choice()
83 char *name;
84 va_dcl
85 #endif /* HAVE_STDARG_H */
86 {
87 return (NULL);
88 }
89
90 void tw_choice_reset(Tw_callback * twc, int value)
91 {
92 }
93
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.