Icons for Radium and Shellplayer.
[AROS-Contrib.git] / bgui / libtag.c
blobc2917049712a9c476dc59865d0ca5d567c8cb4a0
1 /*
2 * BGUI library
3 * libtag.c
5 * (C) Copyright 1998 Manuel Lemos.
6 * (C) Copyright 1996-1997 Ian J. Einman.
7 * (C) Copyright 1993-1996 Jaba Development.
8 * (C) Copyright 1993-1996 Jan van den Baard.
9 * All Rights Reserved.
11 * $Log$
12 * Revision 1.3 2001/04/26 19:52:25 stegerg
13 * commented out the printf.
15 * Revision 1.2 2000/07/03 20:45:44 bergers
16 * Update. Test1 now successfully opens the library. In LibOpen the AddTaskMember function seems to trash the stack somehow (return address is trashed) and therefore I had to take it out.
18 * Revision 1.1 2000/05/30 03:25:24 bergers
19 * Instead of libtag.asm.
21 * Revision 41.10 1998/02/25 21:12:28 mlemos
22 * Bumping to 41.10
24 * Revision 1.1 1998/02/25 17:08:54 mlemos
25 * Ian sources
30 #include <exec/libraries.h>
31 #include <exec/resident.h>
33 extern unsigned char LibName[];
34 extern const unsigned char LibID[];;
35 extern const unsigned char LibVer[];
36 extern struct Library * LibInit();
37 extern int BGUI_end;
39 int entry(void)
41 /* printf("entry called. Doing nothing!\n"); */
42 return -1;
45 struct Resident ROMTag =
47 RTC_MATCHWORD,
48 (struct Resident *)&ROMTag,
49 &BGUI_end,
51 41,
52 NT_LIBRARY,
54 LibName,
55 LibID,
56 LibInit