home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / RTLMAIN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  540 b   |  24 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - rtlmain.c
  3.  *
  4.  * function(s)
  5.  *        LibMain - Dummy LibMain for DLLs.
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 5.0
  10.  *
  11.  *      Copyright (c) 1991, 1992 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15.  
  16. #include <windows.h>
  17.  
  18. #pragma argsused
  19.  
  20. int FAR PASCAL LibMain( HANDLE hInst, WORD wData, WORD cbHeap, LPSTR cmd )
  21. {
  22.     return 1;
  23. }
  24.