summaryrefslogtreecommitdiff
path: root/nt/inc
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2006-09-24 12:35:14 +0000
committerEli Zaretskii <eliz@gnu.org>2006-09-24 12:35:14 +0000
commitf4280c6a62e4a8dd713b6445553b64de91318fb5 (patch)
tree702ecd8c0af3c9d73949106f17ed5dd748726607 /nt/inc
parent1133f8e75c7afb682bd54128d9eb761dfdb1385b (diff)
downloademacs-f4280c6a62e4a8dd713b6445553b64de91318fb5.tar.gz
New file.
Diffstat (limited to 'nt/inc')
-rw-r--r--nt/inc/langinfo.h61
-rw-r--r--nt/inc/nl_types.h26
2 files changed, 87 insertions, 0 deletions
diff --git a/nt/inc/langinfo.h b/nt/inc/langinfo.h
new file mode 100644
index 00000000000..7215e116698
--- /dev/null
+++ b/nt/inc/langinfo.h
@@ -0,0 +1,61 @@
+/* Replacement langinfo.h file for building GNU Emacs on Windows.
+ Copyright (C) 2006 Free Software Foundation, Inc.
+
+This file is part of GNU Emacs.
+
+GNU Emacs is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Emacs is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Emacs; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA. */
+
+#ifndef _LANGINFO_H
+#define _LANGINFO_H
+
+#include <nl_types.h>
+
+enum {
+ CODESET,
+ DAY_1, DAY_2, DAY_3, DAY_4, DAY_5, DAY_6, DAY_7,
+ MON_1, MON_2, MON_3, MON_4, MON_5, MON_6, MON_7, MON_8, MON_9, MON_10,
+ MON_11, MON_12,
+
+ /* Number of enumerated values. */
+ _NL_NUM
+};
+
+#define CODESET CODESET
+
+#define DAY_1 DAY_1
+#define DAY_2 DAY_2
+#define DAY_3 DAY_3
+#define DAY_4 DAY_4
+#define DAY_5 DAY_5
+#define DAY_6 DAY_6
+#define DAY_7 DAY_7
+
+#define MON_1 MON_1
+#define MON_2 MON_2
+#define MON_3 MON_3
+#define MON_4 MON_4
+#define MON_5 MON_5
+#define MON_6 MON_6
+#define MON_7 MON_7
+#define MON_8 MON_8
+#define MON_9 MON_9
+#define MON_10 MON_10
+#define MON_11 MON_11
+#define MON_12 MON_12
+
+extern char *nl_langinfo (nl_item);
+
+#endif /* _LANGINFO_H */
diff --git a/nt/inc/nl_types.h b/nt/inc/nl_types.h
new file mode 100644
index 00000000000..c50885eb1c8
--- /dev/null
+++ b/nt/inc/nl_types.h
@@ -0,0 +1,26 @@
+/* Replacement nl_types.h file for building GNU Emacs on Windows.
+ Copyright (C) 2006 Free Software Foundation, Inc.
+
+This file is part of GNU Emacs.
+
+GNU Emacs is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Emacs is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Emacs; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA. */
+
+#ifndef _NL_TYPES_H
+#define _NL_TYPES_H
+
+typedef int nl_item;
+
+#endif /* _NL_TYPES_H */