#ifndef ALTKEYQ_H
#define ALTKEYQ_H


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


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


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


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


#define MSG_CXDESCR 0
#define MSG_CXDESCR_STR "MS-DOS Style Alt key usage"

#define MSG_ABORT_GAD 1
#define MSG_ABORT_GAD_STR "Abort Program"

#define MSG_NOTFOUND 2
#define MSG_NOTFOUND_STR "Couldn't find\n%s"

#define MSG_NOMEMORY 3
#define MSG_NOMEMORY_STR "Not enough memory"

#define MSG_INITFAIL 4
#define MSG_INITFAIL_STR "Initialization failed"


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


#ifdef STRINGARRAY

struct AppString
{
    LONG   as_ID;
    STRPTR as_Str;
};

struct AppString AppStrings[] =
{
    {MSG_CXDESCR,MSG_CXDESCR_STR},
    {MSG_ABORT_GAD,MSG_ABORT_GAD_STR},
    {MSG_NOTFOUND,MSG_NOTFOUND_STR},
    {MSG_NOMEMORY,MSG_NOMEMORY_STR},
    {MSG_INITFAIL,MSG_INITFAIL_STR},
};


#endif /* STRINGARRAY */


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


#endif /* ALTKEYQ_H */
