home *** CD-ROM | disk | FTP | other *** search
/ Fritz: Win Best Test 1 / 70001.ZIP / 70001 / WINWARE1 / ARCDIB / YOURCOMP.C < prev    next >
Text File  |  1993-09-26  |  957b  |  35 lines

  1.  
  2. /*
  3. *  Standard example shell for C Windows DLL.
  4. *
  5. *  Link with your C routines to perform the compression.
  6. *
  7. *  The main routine should be prototyped as:
  8. *       
  9. *   BOOL far PASCAL _export MyComp(HANDLE IMAGEHANDLE, 
  10. *                                   DWORD &ORIGSIZE, 
  11. *                                    BOOL COMPRESS);
  12. *
  13. *  See the TPW example YourComp.pas for further guidance.
  14. *
  15. *  Don't forget about the YourComp.def file in you project.
  16. */
  17.  
  18. #include <windows.h>
  19.  
  20. // Turn off warning: Parameter '' is never used
  21. #pragma argsused
  22.  
  23.  
  24. // Every DLL has an entry point LibMain and an exit point WEP.
  25. int FAR PASCAL LibMain( HANDLE hInstance, WORD wDataSegment,
  26.                                    WORD wHeapSize, LPSTR lpszCmdLine )
  27. {
  28.     return 1;   // Indicate that the DLL was initialized successfully.
  29. }
  30.  
  31. int FAR PASCAL WEP ( int bSystemExit )
  32. {
  33.     return 1;   // Indicate that the DLL was exited successfully.
  34. }
  35.