summaryrefslogtreecommitdiff
path: root/agent/mibgroup/winExtDLL.h
diff options
context:
space:
mode:
Diffstat (limited to 'agent/mibgroup/winExtDLL.h')
-rwxr-xr-xagent/mibgroup/winExtDLL.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/agent/mibgroup/winExtDLL.h b/agent/mibgroup/winExtDLL.h
new file mode 100755
index 0000000..c90f669
--- /dev/null
+++ b/agent/mibgroup/winExtDLL.h
@@ -0,0 +1,26 @@
+/*
+ * Don't include ourselves twice
+ */
+#ifndef _WINEXTDLL_H
+#define _WINEXTDLL_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /*
+ * Declare our publically-visible functions.
+ * Typically, these will include the initialization and shutdown functions,
+ * the main request callback routine and any writeable object methods.
+ *
+ * Function prototypes are provided for the callback routine ('FindVarMethod')
+ * and writeable object methods ('WriteMethod').
+ */
+ void init_winExtDLL(void);
+ void shutdown_winExtDLL(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _WINEXTDLL_H */