summaryrefslogtreecommitdiffstats
path: root/private/unimodem/new/mic/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'private/unimodem/new/mic/globals.h')
-rw-r--r--private/unimodem/new/mic/globals.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/private/unimodem/new/mic/globals.h b/private/unimodem/new/mic/globals.h
new file mode 100644
index 000000000..b1bf94e22
--- /dev/null
+++ b/private/unimodem/new/mic/globals.h
@@ -0,0 +1,28 @@
+//
+// Copyright (c) 1996 Microsoft Corporation
+//
+//
+// GLOBALS.H -- Declares global data:
+// CInfSymbolTable gSymtab;
+//
+// History:
+// 05/27/96 JosephJ Created
+//
+//
+
+//----------------------- gSymtab -------------------------------
+// Global symbol table.
+// This symbol table maintains a global pool of strings -- only one copy of
+// each unique string is maintained.
+extern CInfSymbolTable gSymtab;
+
+// --------------------- Global Property Symbols ----------------
+extern const CInfSymbol *g_pSymPropCopyFilesSection;
+extern const CInfSymbol *g_pSymPropManufacturerSection;
+extern const CInfSymbol *g_pSymPropAddRegSection;
+#define PROP_INFSECTION_MANUFACTURER g_pSymPropManufacturerSection
+#define PROP_INFSECTION_COPYFILES g_pSymPropCopyFilesSection
+#define PROP_INFSECTION_ADDREG g_pSymPropAddRegSection
+
+
+BOOL InitGlobals(void);