OSDN Git Service

Implement foundation for future NLS enabled diagnostics.
[mingw/mingw-get.git] / src / dmhmsgs.c
1 /*
2  * dmhmsgs.c
3  *
4  * $Id$
5  *
6  * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
7  * Copyright (C) 2013, MinGW.org Project
8  *
9  *
10  * Implementation module for predefined diagnostic messages.
11  *
12  *
13  * This is free software.  Permission is granted to copy, modify and
14  * redistribute this software, under the provisions of the GNU General
15  * Public License, Version 3, (or, at your option, any later version),
16  * as published by the Free Software Foundation; see the file COPYING
17  * for licensing details.
18  *
19  * Note, in particular, that this software is provided "as is", in the
20  * hope that it may prove useful, but WITHOUT WARRANTY OF ANY KIND; not
21  * even an implied WARRANTY OF MERCHANTABILITY, nor of FITNESS FOR ANY
22  * PARTICULAR PURPOSE.  Under no circumstances will the author, or the
23  * MinGW Project, accept liability for any damages, however caused,
24  * arising from the use of this software.
25  *
26  */
27 #include "dmhmsgs.h"
28
29 /* FIXME: although we've provided supporting infrastructure, we are not
30  * yet ready to provide an NLS enabled implementation; ensure that we do
31  * not accidentally attempt to do this.
32  */
33 #undef DMH_NLS_ENABLED
34
35 /* To provide the message catalogue implementation, we must parse the
36  * header file again, with its multiple include guard disabled, and with
37  * DMHMSGS_IMPLEMENTATION defined, (with a non-zero value).
38  */
39 #undef  DMHMSGS_H
40 #define DMHMSGS_IMPLEMENTATION  1
41
42 #include "dmhmsgs.h"
43
44 /* $RCSfile$: end of file */