home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / utils / click.zip / CLKEXP.H < prev    next >
Text File  |  1990-05-26  |  839b  |  25 lines

  1. PROJECT:         Click! Filer
  2. MODULE:          clkimp.h
  3. DESCRIPTION:     DLL import prototypes
  4.  
  5. /* You may use the CLIK.DLL easily... use only for your use through.  DO not
  6.    use this DLL in a commercial application, Do not remove this text fromt 
  7.    the include file and always distribute FREEWARE copies of Click! FIler
  8.    with all files in the ARC */
  9. /* Link using the IMPLIB clik.lib */
  10. /* Link using the INCLUDE clkexp.h, this file */
  11.  
  12. /* ClickIn: call me to init the DLL... HWND is the Parent App's Main Window 
  13.  * handle and HANDLE is the Calling App's hInstance */
  14.  
  15. int FAR PASCAL  ClickIn( HWND, HANDLE );
  16.  
  17. /* ClickOut: call me on exiting your application */
  18.  
  19. int FAR PASCAL  ClickOut( void );
  20.  
  21. /* DoClick:  call this to call click dialog, HWND is parent App Window */
  22.  
  23. int FAR PASCAL  DoClick( HWND );
  24.  
  25.