#ifndef MICRODOT_CAT_H
#define MICRODOT_CAT_H


/****************************************************************************/


/* This file was created automatically by CatComp.
 * Do NOT edit by hand!
 */


#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif

#ifdef CATCOMP_ARRAY
#undef CATCOMP_NUMBERS
#undef CATCOMP_STRINGS
#define CATCOMP_NUMBERS
#define CATCOMP_STRINGS
#endif

#ifdef CATCOMP_BLOCK
#undef CATCOMP_STRINGS
#define CATCOMP_STRINGS
#endif


/****************************************************************************/


#ifdef CATCOMP_NUMBERS

#define MSG_TXT_CONVERTMAIL 0
#define MSG_TXT_CONVERTNEWS 1
#define MSG_TXT_UNBATCH 2
#define MSG_TXT_DOBSMTP 3

#endif /* CATCOMP_NUMBERS */


/****************************************************************************/


#ifdef CATCOMP_STRINGS

#define MSG_TXT_CONVERTMAIL_STR "Konvertiere Mail..."
#define MSG_TXT_CONVERTNEWS_STR "Konvertiere News..."
#define MSG_TXT_UNBATCH_STR "Entpacke Newsbatch..."
#define MSG_TXT_DOBSMTP_STR "Extrahiere SMTP-Batch..."

#endif /* CATCOMP_STRINGS */


/****************************************************************************/


#ifdef CATCOMP_ARRAY

struct CatCompArrayType
{
    LONG   cca_ID;
    STRPTR cca_Str;
};

static const struct CatCompArrayType CatCompArray[] =
{
    {MSG_TXT_CONVERTMAIL,(STRPTR)MSG_TXT_CONVERTMAIL_STR},
    {MSG_TXT_CONVERTNEWS,(STRPTR)MSG_TXT_CONVERTNEWS_STR},
    {MSG_TXT_UNBATCH,(STRPTR)MSG_TXT_UNBATCH_STR},
    {MSG_TXT_DOBSMTP,(STRPTR)MSG_TXT_DOBSMTP_STR},
};

#endif /* CATCOMP_ARRAY */


/****************************************************************************/


#ifdef CATCOMP_BLOCK

static const char CatCompBlock[] =
{
    "\x00\x00\x00\x00\x00\x14"
    MSG_TXT_CONVERTMAIL_STR "\x00"
    "\x00\x00\x00\x01\x00\x14"
    MSG_TXT_CONVERTNEWS_STR "\x00"
    "\x00\x00\x00\x02\x00\x16"
    MSG_TXT_UNBATCH_STR "\x00"
    "\x00\x00\x00\x03\x00\x1A"
    MSG_TXT_DOBSMTP_STR "\x00\x00"
};

#endif /* CATCOMP_BLOCK */


/****************************************************************************/


struct LocaleInfo
{
    APTR li_LocaleBase;
    APTR li_Catalog;
};


#ifdef CATCOMP_CODE

STRPTR GetString(struct LocaleInfo *li, LONG stringNum)
{
LONG   *l;
UWORD  *w;
STRPTR  builtIn;

    l = (LONG *)CatCompBlock;

    while (*l != stringNum)
    {
        w = (UWORD *)((ULONG)l + 4);
        l = (LONG *)((ULONG)l + (ULONG)*w + 6);
    }
    builtIn = (STRPTR)((ULONG)l + 6);

#define XLocaleBase LocaleBase
#define LocaleBase li->li_LocaleBase
    
    if (LocaleBase)
        return(GetCatalogStr(li->li_Catalog,stringNum,builtIn));
#define LocaleBase XLocaleBase
#undef XLocaleBase

    return(builtIn);
}


#endif /* CATCOMP_CODE */


/****************************************************************************/


#endif /* MICRODOT_CAT_H */
