home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / CLASSSRC.ZIP / CLASMAIN.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.0 KB  |  23 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  CLASMAIN.CPP                                                          */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1991, 1992                            */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*  Provides the LibMain() function for the DLL version                   */
  9. /*  of the class libraries                                                */
  10. /*                                                                        */
  11. /*------------------------------------------------------------------------*/
  12.  
  13. #if !defined( __WINDOWS_H )
  14. #include <Windows.h>
  15. #endif    // __WINDOWS_H
  16.  
  17. extern "C" int FAR PASCAL LibMain( HANDLE, WORD, WORD, LPSTR )
  18. {
  19.     return 1;
  20. }
  21.  
  22.  
  23.