add casts to zune macros to silence some warnings
[tangerine.git] / workbench / libs / codesetslib / src / base.h
blobefcab1c7da627ba023e36e651e7727c4bfb47204
1 /***************************************************************************
3 codesets.library - Amiga shared library for handling different codesets
4 Copyright (C) 2001-2005 by Alfonso [alfie] Ranieri <alforan@tin.it>.
5 Copyright (C) 2005-2007 by codesets.library Open Source Team
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 codesets.library project: http://sourceforge.net/projects/codesetslib/
19 $Id$
21 ***************************************************************************/
23 /***************************************************************************/
25 struct LibraryHeader
27 struct Library libBase;
28 struct Library *sysBase;
29 ULONG segList;
30 struct SignalSemaphore libSem;
31 APTR pool;
32 struct SignalSemaphore poolSem;
33 ULONG flags;
34 struct codesetList codesets; // list with all internal codesets.
35 struct codeset *systemCodeset; // ptr to the system's default codeset
36 struct codeset *utf8Codeset; // ptr to the fake utf8 codeset
39 /***************************************************************************/
41 extern struct LibraryHeader* CodesetsBase;
43 /***************************************************************************/