got a lot of crypt32 stuff working
[reactos.git] / rosapps / mc / src / complete.h
1 #ifndef __COMPLETE_H
2 #define __COMPLETE_H
3
4 #define INPUT_COMPLETE_FILENAMES 1
5 #define INPUT_COMPLETE_HOSTNAMES 2
6 #define INPUT_COMPLETE_COMMANDS 4
7 #define INPUT_COMPLETE_VARIABLES 8
8 #define INPUT_COMPLETE_USERNAMES 16
9 #define INPUT_COMPLETE_CD 32
10
11 typedef char *CompletionFunction (char *, int);
12
13 void free_completions (WInput *);
14 void complete (WInput *);
15
16 #endif /* __COMPLETE_H */