home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / goattracker_2.70.zip / src / gfile.h < prev    next >
C/C++ Source or Header  |  2008-04-01  |  394b  |  21 lines

  1. #ifndef GFILE_H
  2. #define GFILE_H
  3.  
  4. #define MAX_DIRFILES 16384
  5. #define MAX_FILENAME 60
  6. #define MAX_PATHNAME 256
  7.  
  8. typedef struct
  9. {
  10.   char *name;
  11.   int attribute;
  12. } DIRENTRY;
  13.  
  14. void initpaths(void);
  15. int fileselector(char *name, char *path, char *filter, char *title, int filemode);
  16. void editstring(char *buffer, int maxlength);
  17. int cmpname(char *string1, char *string2);
  18.  
  19. #endif
  20.  
  21.