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

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xmt310/Xmt/InputFieldS.c

  • 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
 * Motif Tools Library, Version 3.1
 
3
 * $Id$
 
4
 * 
 
5
 * Written by David Flanagan.
 
6
 * Copyright (c) 1992-2001 by David Flanagan.
 
7
 * All Rights Reserved.  See the file COPYRIGHT for details.
 
8
 * This is open source software.  See the file LICENSE for details.
 
9
 * There is no warranty for this software.  See NO_WARRANTY for details.
 
10
 *
 
11
 * $Log$
 
12
 * Revision 1.1.1.1  2001/07/18 11:06:02  root
 
13
 * Initial checkin.
 
14
 *
 
15
 * Revision 1.2  2001/06/12 16:25:28  andre
 
16
 * *** empty log message ***
 
17
 *
 
18
 *
 
19
 */
 
20
#include <X11/Intrinsic.h>
 
21
#ifndef _Xconst
 
22
#if __STDC__ || defined(__cplusplus) || defined(c_plusplus)
 
23
#define _Xconst const
 
24
#else
 
25
#define _Xconst
 
26
#endif
 
27
#endif /* _Xconst */
 
28
 
 
29
externaldef(xmtinputfieldstrings) _Xconst char XmtInputFieldStrings[] = {
 
30
    'a','u','t','o','D','e','l','e','t','e',0,
 
31
    'a','u','t','o','I','n','s','e','r','t',0,
 
32
    'b','e','e','p','O','n','E','r','r','o','r',0,
 
33
    'b','u','f','f','e','r','S','y','m','b','o','l','N','a','m','e',0,
 
34
    'e','r','r','o','r','B','a','c','k','g','r','o','u','n','d',0,
 
35
    'e','r','r','o','r','C','a','l','l','b','a','c','k',0,
 
36
    'e','r','r','o','r','F','o','r','e','g','r','o','u','n','d',0,
 
37
    'e','r','r','o','r','S','t','r','i','n','g',0,
 
38
    'h','i','g','h','l','i','g','h','t','O','n','E','r','r','o','r',0,
 
39
    'i','n','p','u','t',0,
 
40
    'i','n','p','u','t','C','a','l','l','b','a','c','k',0,
 
41
    'm','a','t','c','h','A','l','l',0,
 
42
    'o','v','e','r','s','t','r','i','k','e',0,
 
43
    'p','a','t','t','e','r','n',0,
 
44
    'r','e','p','l','a','c','e','O','n','E','r','r','o','r',0,
 
45
    't','a','r','g','e','t','S','y','m','b','o','l','N','a','m','e',0,
 
46
    'v','e','r','i','f','y','C','a','l','l','b','a','c','k',0,
 
47
    'A','u','t','o','D','e','l','e','t','e',0,
 
48
    'A','u','t','o','I','n','s','e','r','t',0,
 
49
    'B','e','e','p','O','n','E','r','r','o','r',0,
 
50
    'B','u','f','f','e','r','S','y','m','b','o','l','N','a','m','e',0,
 
51
    'E','r','r','o','r','B','a','c','k','g','r','o','u','n','d',0,
 
52
    'E','r','r','o','r','F','o','r','e','g','r','o','u','n','d',0,
 
53
    'E','r','r','o','r','S','t','r','i','n','g',0,
 
54
    'H','i','g','h','l','i','g','h','t','O','n','E','r','r','o','r',0,
 
55
    'I','n','p','u','t',0,
 
56
    'M','a','t','c','h','A','l','l',0,
 
57
    'O','v','e','r','s','t','r','i','k','e',0,
 
58
    'P','a','t','t','e','r','n',0,
 
59
    'R','e','p','l','a','c','e','O','n','E','r','r','o','r',0,
 
60
    'T','a','r','g','e','t','S','y','m','b','o','l','N','a','m','e',0
 
61
};
 
62