revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / classes / zune / nlist / nfloattext_mcc / library.c
blob808a9bcab9d2287876929a77f7f399256f91dd96
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-2014 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 /******************************************************************************/
39 /* include the minimal startup code to be able to start the class from a */
40 /* shell without crashing the system */
41 /******************************************************************************/
42 #include "shellstart.c"
44 #define VERSION LIB_VERSION
45 #define REVISION LIB_REVISION
47 #define CLASS MUIC_NFloattext
48 #define SUPERCLASS MUIC_NList
50 #define INSTDATA NFTData
52 #define USERLIBID CLASS " " LIB_REV_STRING " [" SYSTEMSHORT "/" CPU "] (" LIB_DATE ") " LIB_COPYRIGHT
53 #define MASTERVERSION 19
55 #define USEDCLASSES used_mccs
56 static const char *used_mccs[] = { "NList.mcc", "NListview.mcc", NULL };
58 #define USEDCLASSESP used_mcps
59 static const char *used_mcps[] = { "NListviews.mcp", NULL };
61 #define MIN_STACKSIZE 8192
63 /******************************************************************************/
64 /* define the functions used by the startup code ahead of including mccinit.c */
65 /******************************************************************************/
67 /******************************************************************************/
68 /* include the lib startup code for the mcc/mcp (and muimaster inlines) */
69 /******************************************************************************/
70 #include "mccinit.c"
72 /******************************************************************************/
73 /* define all implementations of our user functions */
74 /******************************************************************************/