]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/nl_types.h
Standard Libraries for EDK II.
[mirror_edk2.git] / StdLib / Include / nl_types.h
diff --git a/StdLib/Include/nl_types.h b/StdLib/Include/nl_types.h
new file mode 100644 (file)
index 0000000..f98111a
--- /dev/null
@@ -0,0 +1,98 @@
+/*  $NetBSD: nl_types.h,v 1.11 2005/02/03 04:39:32 perry Exp $  */\r
+\r
+/*-\r
+ * Copyright (c) 1996 The NetBSD Foundation, Inc.\r
+ * All rights reserved.\r
+ *\r
+ * This code is derived from software contributed to The NetBSD Foundation\r
+ * by J.T. Conklin.\r
+ *\r
+ * Redistribution and use in source and binary forms, with or without\r
+ * modification, are permitted provided that the following conditions\r
+ * are met:\r
+ * 1. Redistributions of source code must retain the above copyright\r
+ *    notice, this list of conditions and the following disclaimer.\r
+ * 2. Redistributions in binary form must reproduce the above copyright\r
+ *    notice, this list of conditions and the following disclaimer in the\r
+ *    documentation and/or other materials provided with the distribution.\r
+ * 3. All advertising materials mentioning features or use of this software\r
+ *    must display the following acknowledgement:\r
+ *        This product includes software developed by the NetBSD\r
+ *        Foundation, Inc. and its contributors.\r
+ * 4. Neither the name of The NetBSD Foundation nor the names of its\r
+ *    contributors may be used to endorse or promote products derived\r
+ *    from this software without specific prior written permission.\r
+ *\r
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
+ * POSSIBILITY OF SUCH DAMAGE.\r
+ */\r
+\r
+#ifndef _NL_TYPES_H_\r
+#define _NL_TYPES_H_\r
+#include  <sys/EfiCdefs.h>\r
+\r
+#ifdef _NLS_PRIVATE\r
+/*\r
+ * MESSAGE CATALOG FILE FORMAT.\r
+ *\r
+ * The NetBSD message catalog format is similar to the format used by\r
+ * Svr4 systems.  The differences are:\r
+ *   * fixed byte order (big endian)\r
+ *   * fixed data field sizes\r
+ *\r
+ * A message catalog contains four data types: a catalog header, one\r
+ * or more set headers, one or more message headers, and one or more\r
+ * text strings.\r
+ */\r
+\r
+#define _NLS_MAGIC  0xff88ff89\r
+\r
+struct _nls_cat_hdr {\r
+  int32_t __magic;\r
+  int32_t __nsets;\r
+  int32_t __mem;\r
+  int32_t __msg_hdr_offset;\r
+  int32_t __msg_txt_offset;\r
+} ;\r
+\r
+struct _nls_set_hdr {\r
+  int32_t __setno;  /* set number: 0 < x <= NL_SETMAX */\r
+  int32_t __nmsgs;  /* number of messages in the set  */\r
+  int32_t __index;  /* index of first msg_hdr in msg_hdr table */\r
+} ;\r
+\r
+struct _nls_msg_hdr {\r
+  int32_t __msgno;  /* msg number: 0 < x <= NL_MSGMAX */\r
+  int32_t __msglen;\r
+  int32_t __offset;\r
+} ;\r
+\r
+#endif\r
+\r
+#define NL_SETD   1\r
+#define NL_CAT_LOCALE   1\r
+\r
+typedef struct __nl_cat_d {\r
+  void  *__data;\r
+  int __size;\r
+} *nl_catd;\r
+\r
+typedef LONG32  nl_item;\r
+\r
+__BEGIN_DECLS\r
+nl_catd  catopen(const char *, int);\r
+char    *catgets(nl_catd, int, int, const char *)\r
+  __attribute__((__format_arg__(4)));\r
+int  catclose(nl_catd);\r
+__END_DECLS\r
+\r
+#endif  /* _NL_TYPES_H_ */\r