~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xbae/Converters.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright(c) 1992 Bell Communications Research, Inc. (Bellcore)
 
3
 * Copyright(c) 1995-99 Andrew Lister
 
4
 *                        All rights reserved
 
5
 * Permission to use, copy, modify and distribute this material for
 
6
 * any purpose and without fee is hereby granted, provided that the
 
7
 * above copyright notice and this permission notice appear in all
 
8
 * copies, and that the name of Bellcore not be used in advertising
 
9
 * or publicity pertaining to this material without the specific,
 
10
 * prior written permission of an authorized representative of
 
11
 * Bellcore.
 
12
 *
 
13
 * BELLCORE MAKES NO REPRESENTATIONS AND EXTENDS NO WARRANTIES, EX-
 
14
 * PRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE, INCLUDING, BUT
 
15
 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 
16
 * FITNESS FOR ANY PARTICULAR PURPOSE, AND THE WARRANTY AGAINST IN-
 
17
 * FRINGEMENT OF PATENTS OR OTHER INTELLECTUAL PROPERTY RIGHTS.  THE
 
18
 * SOFTWARE IS PROVIDED "AS IS", AND IN NO EVENT SHALL BELLCORE OR
 
19
 * ANY OF ITS AFFILIATES BE LIABLE FOR ANY DAMAGES, INCLUDING ANY
 
20
 * LOST PROFITS OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES RELAT-
 
21
 * ING TO THE SOFTWARE.
 
22
 *
 
23
 * $Id$
 
24
 */
 
25
 
 
26
#ifndef _Xbae_Converters_h
 
27
#define _Xbae_Converters_h
 
28
 
 
29
/*
 
30
 * Converters.h created by Andrew Lister (6 August, 1995)
 
31
 */
 
32
 
 
33
#include <Xm/Xm.h>
 
34
#include "Macros.h"
 
35
/*
 
36
 * Type converters
 
37
 */
 
38
Boolean CvtStringToStringArray P((Display *, XrmValuePtr, Cardinal *,
 
39
                                   XrmValuePtr, XrmValuePtr, XtPointer *));
 
40
void StringArrayDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
41
                               XrmValuePtr, Cardinal *));
 
42
Boolean CvtStringToCellTable P((Display *, XrmValuePtr, Cardinal *,
 
43
                                 XrmValuePtr, XrmValuePtr, XtPointer *));
 
44
void StringCellDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
45
                              XrmValuePtr, Cardinal *));
 
46
Boolean CvtStringToWidthArray P((Display *, XrmValuePtr, Cardinal *,
 
47
                                  XrmValuePtr, XrmValuePtr, XtPointer *));
 
48
void WidthArrayDestructor  P((XtAppContext, XrmValuePtr, XtPointer,
 
49
                               XrmValuePtr, Cardinal *));
 
50
Boolean CvtStringToMaxLengthArray P((Display *, XrmValuePtr, Cardinal *,
 
51
                                      XrmValuePtr, XrmValuePtr, XtPointer *));
 
52
void MaxLengthArrayDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
53
                                  XrmValuePtr, Cardinal *));
 
54
Boolean CvtStringToBooleanArray P((Display *, XrmValuePtr, Cardinal *,
 
55
                                    XrmValuePtr, XrmValuePtr, XtPointer *));
 
56
void BooleanArrayDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
57
                                XrmValuePtr, Cardinal *));
 
58
Boolean CvtStringToAlignmentArray P((Display *, XrmValuePtr, Cardinal *,
 
59
                                      XrmValuePtr, XrmValuePtr, XtPointer *));
 
60
void AlignmentArrayDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
61
                                  XrmValuePtr, Cardinal *num_args));
 
62
Boolean CvtStringToPixelTable P((Display *, XrmValuePtr, Cardinal *,
 
63
                                  XrmValuePtr, XrmValuePtr, XtPointer *));
 
64
void PixelTableDestructor P((XtAppContext, XrmValuePtr, XtPointer,
 
65
                                  XrmValuePtr, Cardinal *));
 
66
Boolean CvtStringToGridType P((Display *, XrmValuePtr, Cardinal *,
 
67
                                XrmValuePtr, XrmValuePtr, XtPointer *));
 
68
 
 
69
Boolean
 
70
#ifdef __VMS
 
71
CvtStringToMatrixScrollBarDisp
 
72
#else
 
73
CvtStringToMatrixScrollBarDisplayPolicy
 
74
#endif
 
75
                                        P((Display *, XrmValuePtr,
 
76
                                           Cardinal *, XrmValuePtr,
 
77
                                           XrmValuePtr,
 
78
                                           XtPointer *));
 
79
 
 
80
#endif