home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Developer CD v1.2
/
amidev_cd_12.iso
/
devcon
/
milan_1991
/
devcon91.2
/
locale
/
development
/
example
/
samplestr.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-09-01
|
821b
|
51 lines
#ifndef TEXTTABLE_H
#define TEXTTABLE_H
/****************************************************************************/
/* This file was created automatically by CatComp.
* Do NOT edit by hand!
*/
#include <exec/types.h>
/****************************************************************************/
#define MSG_HELLO 0
#define MSG_HELLO_STR "Hello World!\n"
#define MSG_BYE 1
#define MSG_BYE_STR "Goodbye World!\n"
/****************************************************************************/
#ifdef STRINGARRAY
struct AppString
{
LONG as_ID;
STRPTR as_Str;
};
struct AppString AppStrings[] =
{
{MSG_HELLO,MSG_HELLO_STR},
{MSG_BYE,MSG_BYE_STR},
};
#endif /* STRINGARRAY */
/****************************************************************************/
#endif /* TEXTTABLE_H */