home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / fldrvw / include.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-27  |  702 b   |  27 lines

  1. /********************************************************************/
  2. /*           FolderViews - Drag and drop directory viewer           */
  3. /*             Public Domain (P) 1992  Benjamin Cooley              */
  4. /*              include.h - FolderView Standard Includes            */
  5. /********************************************************************/
  6.  
  7. #ifndef _INCLUDE_H
  8. #define _INCLUDE_H
  9.  
  10. /* Windows Libraries */
  11. #include <windows.h>
  12. #include <shellapi.h>
  13. #include <owl.h>
  14. #include <edit.h>
  15.  
  16. /* C Runtime Library */
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include <string.h>
  20. #include <mem.h>
  21. #include <dir.h>
  22. #include <ctype.h>
  23. #include <io.h>
  24. #include <time.h>
  25.  
  26. #endif
  27.