home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / code / kdbf / dbfmain.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  530 b   |  32 lines

  1.  
  2. //
  3. // DLLMAIN.CPP
  4. //
  5. // This file contains LibMain and WEP for creating 
  6. // the Database Framework DLL.
  7. //
  8.  
  9. #include <windows.h>
  10.  
  11. #ifndef _MSC_VER
  12.    // take care of not-used argument warnings
  13.    #pragma argsused
  14. #endif
  15.  
  16. int FAR PASCAL LibMain(HINSTANCE hInstance, WORD /*wDataSeg*/,
  17.   WORD /* cbHeapSize */, LPSTR lpCmdLine)
  18. {
  19.     return 1;
  20. }
  21.  
  22. #ifndef _MSC_VER
  23.    // take care of not-used argument warnings
  24.    #pragma argsused
  25. #endif
  26.  
  27. int FAR PASCAL WEP ( int /*bSystemExit*/ )
  28. {
  29.     return 1;
  30. }
  31.  
  32.