home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / multilin.exe / DLLENTRY.C < prev    next >
C/C++ Source or Header  |  1995-04-01  |  334b  |  19 lines

  1. //---------------------------------------------------------------
  2. // DLLENTRY.C -- Code entry point for RESDLL dynamic link library
  3.  
  4. #include <windows.h>
  5.  
  6.  
  7. BOOL WINAPI DLLEntryPoint(
  8.  
  9. HINSTANCE hInstance,
  10. DWORD     dwReason,
  11. LPVOID    pvReserved)
  12. {
  13.     return( TRUE);
  14.  
  15.     hInstance;
  16.     dwReason;
  17.     pvReserved;
  18. }
  19.