1
2#include <config.h>
3
4#include <string.h>
5#include <stdlib.h>
6#include <stdio.h>
7#ifndef macintosh
8#include <sys/stat.h>
9#endif
10#include <fcntl.h>
11#include <assert.h>
12
13#include <sasl.h>
14#include <saslplug.h>
15#include <saslutil.h>
16
17#include "plugin_common.h"
18
19#ifdef WIN32
20BOOL APIENTRY DllMain( HANDLE hModule,
21                       DWORD  ul_reason_for_call,
22                       LPVOID lpReserved
23					 )
24{
25    switch (ul_reason_for_call)
26	{
27		case DLL_PROCESS_ATTACH:
28		case DLL_THREAD_ATTACH:
29		case DLL_THREAD_DETACH:
30		case DLL_PROCESS_DETACH:
31			break;
32    }
33    return TRUE;
34}
35#endif
36
37SASL_AUXPROP_PLUG_INIT( mysql )
38
39