home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / sdls / Tutorials_ClientEx_h_dllExample < prev    next >
Encoding:
Text File  |  1995-03-08  |  296 b   |  19 lines

  1. /*
  2.  * dllExample.h
  3.  *
  4.  * Header file for example DLL
  5.  */
  6.  
  7. #ifndef __dllExample_h
  8. #define __dllExample_h
  9.  
  10. /* --- A function to print a friendly greeting --- */
  11.  
  12. extern void hello(void);
  13.  
  14. /* --- A function to return the time formatted in a nice way --- */
  15.  
  16. extern char *current_time(void);
  17.  
  18. #endif
  19.