Minor cleanup of Motif checker to keep #ifdef's all in one place (part 2)
[nedit.git] / util / motif.h
blob6662d2a161808e8b6509b6bdbf3560736f975505
1 /*******************************************************************************
2 * *
3 * motif.h: Determine stability of Motif *
4 * *
5 * Copyright (C) 2004 Scott Tringali *
6 * *
7 * This is free software; you can redistribute it and/or modify it under the *
8 * terms of the GNU General Public License as published by the Free Software *
9 * Foundation; either version 2 of the License, or (at your option) any later *
10 * version. *
11 * *
12 * This software is distributed in the hope that it will be useful, but WITHOUT *
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
15 * for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License along with *
18 * software; if not, write to the Free Software Foundation, Inc., 59 Temple *
19 * Place, Suite 330, Boston, MA 02111-1307 USA *
20 * *
21 * Written by Scott Tringali *
22 * *
23 *******************************************************************************/
25 enum MotifStability
27 MotifKnownGood,
28 MotifUnknown,
29 MotifKnownBad
32 /* Return the stability of the Motif compiled-in */
33 enum MotifStability GetMotifStability(void);
35 /* Acquire a list of good version for showing to the user. */
36 const char *GetMotifStableVersions(void);