home *** CD-ROM | disk | FTP | other *** search
- /************************************************************
- * MultiUser - MultiUser Task/File Support System *
- * --------------------------------------------------------- *
- * localized strings for support commands *
- * --------------------------------------------------------- *
- * © Copyright 1993-1994 Geert Uytterhoeven *
- * All Rights Reserved. *
- ************************************************************/
-
- #include <exec/types.h>
- #include <libraries/locale.h>
-
- #define CATCOMP_NUMBERS
- #define CATCOMP_STRINGS
- #include "musupport_locale.h"
-
- extern void _OpenLoc(struct ExecBase *SysBase,struct LocaleInfo *li);
- extern void _CloseLoc(struct ExecBase *SysBase,struct LocaleInfo *li);
- extern STRPTR _GetLocS(struct ExecBase *SysBase,struct LocaleInfo *li,LONG id,STRPTR defstr);
- extern STRPTR _GetLocStr(struct ExecBase *SysBase,LONG id,STRPTR defstr);
-
- #define OpenLoc(li) _OpenLoc(SysBase,li)
- #define CloseLoc(li) _CloseLoc(SysBase,li)
- #define GetLocS(li,x) _GetLocS(SysBase,li,x,x ## _STR)
- #define GetLocStr(x) _GetLocStr(SysBase,x,x ## _STR)
-