summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/digi/pcimac/cnf.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/ntos/ndis/digi/pcimac/cnf.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/private/ntos/ndis/digi/pcimac/cnf.h b/private/ntos/ndis/digi/pcimac/cnf.h
new file mode 100644
index 000000000..a897e0b22
--- /dev/null
+++ b/private/ntos/ndis/digi/pcimac/cnf.h
@@ -0,0 +1,13 @@
+/*
+ * CNF_PUB.H - config module public defs
+ */
+
+/* class operations */
+BOOL cnf_get_long(CHAR* path, CHAR* key,
+ ULONG* ret_val, ULONG def_val);
+BOOL cnf_get_str(CHAR* path, CHAR* key,
+ CHAR* ret_val, ULONG maxlen, CHAR* def_val);
+BOOL cnf_get_multi_str(CHAR* path, CHAR* key,
+ CHAR* store_buf, ULONG store_len,
+ CHAR** str_vec, ULONG str_max, ULONG* str_num,
+ CHAR** def_vec, ULONG def_num);