Subversion Repositories SvarDOS

Rev

Rev 2058 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2058 Rev 2059
Line 47... Line 47...
47
  unsigned long size;       /* low word followed by high word */
47
  unsigned long size;       /* low word followed by high word */
48
  char name[13];  /* file name, not space padded, period, '\0' terminated, wildcards replaced */
48
  char name[13];  /* file name, not space padded, period, '\0' terminated, wildcards replaced */
49
};
49
};
50
 
50
 
51
 
51
 
52
struct FFDTA *FindFirstFile(const char *pathname, struct FFDTA *dta);
52
int FindFirstFile(const char *pathname, struct FFDTA *dta);
53
 
53
 
54
int FindNextFile(struct FFDTA *hnd);
54
int FindNextFile(struct FFDTA *hnd);
55
 
55
 
56
void FindClose(struct FFDTA *hnd);
56
void FindClose(struct FFDTA *hnd);
57
 
57