summaryrefslogtreecommitdiff
path: root/indexing/glo+idxtex/GloDef.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /indexing/glo+idxtex/GloDef.h
Initial commit
Diffstat (limited to 'indexing/glo+idxtex/GloDef.h')
-rw-r--r--indexing/glo+idxtex/GloDef.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/indexing/glo+idxtex/GloDef.h b/indexing/glo+idxtex/GloDef.h
new file mode 100644
index 0000000000..e7c15441de
--- /dev/null
+++ b/indexing/glo+idxtex/GloDef.h
@@ -0,0 +1,42 @@
+/* Module Name: GloDef.H
+ *
+ * Description:
+ * Definitions for GloTeX data structures
+ *
+ * Author: R L Aurbach CR&DS MIS Group 17-Aug-1986
+ *
+ * Modification History:
+ *
+ * Version Initials Date Description
+ * ------------------------------------------------------------------------
+ * 1-001 RLA 17-Aug-1986 Original Code
+ * 2-001 F.H. 17-May-1991 converted to portable C
+ * 2-002 S.I. 30-Mar-1992 added /glossaryname for intern. support
+ *
+ */
+
+/* Definitions */
+
+#define TRUE 1
+#define FALSE 0
+#define STRDYN { 0, DSC$K_DTYPE_T, DSC$K_CLASS_D, 0 }
+#define NONE 0
+#define ARTICLE 1
+#define REPORT 2
+#define linesz 133 /* Max size of a line */
+
+/* Declarations */
+
+typedef struct string
+{
+ struct string *next;
+ char *desc;
+} STRING, *STRING_PTR;
+
+typedef struct node
+{
+ struct node *next;
+ char *spell;
+ char *item;
+ struct string *hdr;
+} NODE, *NODE_PTR;