Moving to main tree, needed by SysExplorer
[AROS.git] / workbench / classes / zune / nlist / nfloattext_mcc / library.c
blob584126b6cca0740d91b5a8ae7dcec333d141dfa3
1 /***************************************************************************
3 NFloattext.mcc - New Floattext MUI Custom Class
4 Registered MUI class, Serial Number: 1d51 (0x9d5100a1 to 0x9d5100aF)
6 Copyright (C) 1996-2001 by Gilles Masson
7 Copyright (C) 2001-2005 by NList Open Source Team
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
19 NList classes Support Site: http://www.sf.net/projects/nlist-classes
21 $Id$
23 ***************************************************************************/
25 #include <proto/exec.h>
27 /******************************************************************************/
28 /* */
29 /* MCC/MCP name and version */
30 /* */
31 /* ATTENTION: The FIRST LETTER of NAME MUST be UPPERCASE */
32 /* */
33 /******************************************************************************/
35 #include "private.h"
36 #include "version.h"
38 #define VERSION LIB_VERSION
39 #define REVISION LIB_REVISION
41 #define CLASS MUIC_NFloattext
42 #define SUPERCLASS MUIC_NList
44 #define INSTDATA NFTData
46 #define USERLIBID CLASS " " LIB_REV_STRING " [" SYSTEMSHORT "/" CPU "] (" LIB_DATE ") " LIB_COPYRIGHT
47 #define MASTERVERSION 19
49 #define USEDCLASSES used_mccs
50 static const char *used_mccs[] = { "NList.mcc", "NListview.mcc", NULL };
52 #define USEDCLASSESP used_mcps
53 static const char *used_mcps[] = { "NListviews.mcp", NULL };
55 #define MIN_STACKSIZE 8192
57 /******************************************************************************/
58 /* define the functions used by the startup code ahead of including mccinit.c */
59 /******************************************************************************/
61 /******************************************************************************/
62 /* include the lib startup code for the mcc/mcp (and muimaster inlines) */
63 /******************************************************************************/
64 #include "mccinit.c"
66 /******************************************************************************/
67 /* define all implementations of our user functions */
68 /******************************************************************************/