#ifndef __Message__H
#define __Message__H

#include "kernel.h"

#ifdef __cplusplus
extern "C" {
#endif

void throw_Msg_Msg(void);
void Msg_NotMsg(void);
const char* Msg_Lookup(const char* tag);
const char* Msg_Lookup1(const char* tag, const char* par1);
#ifdef __CC_NORCROFT
#pragma -v1 // hint to the compiler to check f/s/printf format
#endif
const char* Msg_CLookup(const char* tag, ...);
#ifdef __CC_NORCROFT
#pragma -v0 // return to default
#endif
const _kernel_oserror* Msg_ErrorLookup(const _kernel_oserror* err);

#ifdef __cplusplus
}
#endif

#endif
