summaryrefslogtreecommitdiff
path: root/agent/mibgroup/winExtDLL.h
blob: c90f6696b4dc8c58f1e8277580bece36aaea38d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 */