1 /*
2  * Don't include ourselves twice
3  */
4 #ifndef _WINEXTDLL_H
5 #define _WINEXTDLL_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11     /*
12      * Declare our publically-visible functions.
13      * Typically, these will include the initialization and shutdown functions,
14      *  the main request callback routine and any writeable object methods.
15      *
16      * Function prototypes are provided for the callback routine ('FindVarMethod')
17      *  and writeable object methods ('WriteMethod').
18      */
19      void     init_winExtDLL(void);
20      void     shutdown_winExtDLL(void);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif                          /* _WINEXTDLL_H */
27