Subversion Repositories SvarDOS

Rev

Rev 389 | Rev 396 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 389 Rev 392
Line 44... Line 44...
44
unsigned short findfirst(struct DTA *dta, const char *pattern, unsigned short attr);
44
unsigned short findfirst(struct DTA *dta, const char *pattern, unsigned short attr);
45
 
45
 
46
/* find next matching, ie. continues an action intiated by findfirst() */
46
/* find next matching, ie. continues an action intiated by findfirst() */
47
unsigned short findnext(struct DTA *dta);
47
unsigned short findnext(struct DTA *dta);
48
 
48
 
-
 
49
/* print s string and wait for a single key press from stdin. accepts only
-
 
50
 * key presses defined in the c ASCIIZ string. returns offset of pressed key
-
 
51
 * in string. keys in c MUST BE UPPERCASE! */
-
 
52
unsigned short askchoice(const char *s, const char *c);
-
 
53
 
-
 
54
/* converts a path to its canonic representation */
-
 
55
void file_truename(const char *src, char *dst);
-
 
56
 
-
 
57
/* returns DOS attributes of file, or -1 on error */
-
 
58
int file_getattr(const char *fname);
-
 
59
 
49
#endif
60
#endif