Commit 547a4e18 547a4e18ed767f318fc357df9772f144d8ddf6bd by Sergey Poznyakoff

Include <mailutils/types.h>, protect the file contents by #ifndef .. #endif

1 parent fa568b30
...@@ -15,6 +15,11 @@ ...@@ -15,6 +15,11 @@
15 License along with this library; if not, write to the Free Software 15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17 17
18 #ifndef _MAILUTILS_MU_AUTH_H
19 #define _MAILUTILS_MU_AUTH_H
20
21 #include <mailutils/types.h>
22
18 typedef int (*mu_auth_fp) __P((void *return_data, 23 typedef int (*mu_auth_fp) __P((void *return_data,
19 void *key, 24 void *key,
20 void *func_data, 25 void *func_data,
...@@ -94,3 +99,5 @@ extern struct mu_auth_module mu_auth_virtual_module; ...@@ -94,3 +99,5 @@ extern struct mu_auth_module mu_auth_virtual_module;
94 mu_auth_register_module (&mu_auth_sql_module);\ 99 mu_auth_register_module (&mu_auth_sql_module);\
95 mu_auth_register_module (&mu_auth_virtual_module);\ 100 mu_auth_register_module (&mu_auth_virtual_module);\
96 mu_auth_init (); } while (0) 101 mu_auth_init (); } while (0)
102
103 #endif
......