home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 January / VPR0101A.BIN / OLS / TAR32053 / tar32053.exe / SRC / DLLMAIN.C < prev    next >
C/C++ Source or Header  |  1999-05-23  |  346b  |  15 lines

  1. /*
  2.     dllmain.c
  3. */
  4. #include "dllmain.h"
  5.  
  6. HINSTANCE application_instance;    /* TAR32.DLLのハンドル */
  7.  
  8. /* DLLのメイン関数。 DLLがロードされた時(など)に呼び出される*/
  9. BOOL WINAPI DllMain(HANDLE hInst,ULONG ul_reason_for_call,LPVOID lpReserved)
  10. {
  11.     //MessageBox(NULL,"tar32.dll","DLLMAIN!!",0);
  12.     application_instance=hInst;
  13.     return TRUE;
  14. }
  15.