home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / libmysql / dll.c next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  113 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /*
  19. ** Handling initialization of the dll library
  20. */
  21.  
  22. #include <global.h>
  23. #include <my_sys.h>
  24. #include <my_pthread.h>
  25.  
  26. static bool libmysql_inited=0;
  27.  
  28. void libmysql_init(void)
  29. {
  30.   if (libmysql_inited)
  31.     return;
  32.   libmysql_inited=1;
  33.   my_init();
  34.   {
  35.     DBUG_ENTER("libmysql_init");
  36. #ifdef LOG_ALL
  37.     DBUG_PUSH("d:t:S:O,c::\\tmp\\libmysql.log");
  38. #else
  39.     if (getenv("LIBMYSQL_LOG") != NULL)
  40.       DBUG_PUSH(getenv("LIBMYSQL_LOG"));
  41. #endif
  42.     DBUG_VOID_RETURN;
  43.   }
  44. }
  45.  
  46. #ifdef __WIN__
  47.  
  48. static int inited=0,threads=0;
  49. HINSTANCE NEAR s_hModule;    /* Saved module handle */
  50. DWORD main_thread;
  51.  
  52. BOOL APIENTRY LibMain(HANDLE hInst,DWORD ul_reason_being_called,
  53.               LPVOID lpReserved)
  54. {
  55.   switch (ul_reason_being_called) {
  56.   case DLL_PROCESS_ATTACH:    /* case of libentry call in win 3.x */
  57.     if (!inited++)
  58.     {
  59.       s_hModule=hInst;
  60.       libmysql_init();
  61.       main_thread=GetCurrentThreadId();
  62.     }
  63.     break;
  64.   case DLL_THREAD_ATTACH:
  65.     threads++;
  66.     my_thread_init();
  67.     break;
  68.   case DLL_PROCESS_DETACH:    /* case of wep call in win 3.x */
  69.      if (!--inited)        /* Safety */
  70.      {
  71.        /* my_thread_init() */    /* This may give extra safety */
  72.        my_end(0);
  73.      }
  74.     break;
  75.   case DLL_THREAD_DETACH:
  76.     /* Main thread will free by my_end() */
  77.     threads--;
  78.     if (main_thread != GetCurrentThreadId())
  79.       my_thread_end();
  80.     break;
  81.   default:
  82.     break;
  83.   } /* switch */
  84.  
  85.   return TRUE;
  86.  
  87.   UNREFERENCED_PARAMETER(lpReserved);
  88. } /* LibMain */
  89.  
  90. int __stdcall DllMain(HANDLE hInst,DWORD ul_reason_being_called,LPVOID lpReserved)
  91. {
  92.   return LibMain(hInst,ul_reason_being_called,lpReserved);
  93. }
  94.  
  95. #elif defined(WINDOWS)
  96.  
  97. /****************************************************************************
  98. **    This routine is called by LIBSTART.ASM at module load time.  All it
  99. **    does in this sample is remember the DLL module handle.    The module
  100. **    handle is needed if you want to do things like load stuff from the
  101. **    resource file (for instance string resources).
  102. ****************************************************************************/
  103.  
  104. int _export FAR PASCAL libmain(HANDLE hModule,short cbHeapSize,
  105.                    UCHAR FAR *lszCmdLine)
  106. {
  107.   s_hModule = hModule;
  108.   libmysql_init();
  109.   return TRUE;
  110. }
  111.  
  112. #endif
  113.