mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
e5c0c7185e
svn path=/trunk/; revision=2456
16 lines
390 B
C
16 lines
390 B
C
#ifndef __COMPLETE_H
|
|
#define __COMPLETE_H
|
|
|
|
#define INPUT_COMPLETE_FILENAMES 1
|
|
#define INPUT_COMPLETE_HOSTNAMES 2
|
|
#define INPUT_COMPLETE_COMMANDS 4
|
|
#define INPUT_COMPLETE_VARIABLES 8
|
|
#define INPUT_COMPLETE_USERNAMES 16
|
|
#define INPUT_COMPLETE_CD 32
|
|
|
|
typedef char *CompletionFunction (char *, int);
|
|
|
|
void free_completions (WInput *);
|
|
void complete (WInput *);
|
|
|
|
#endif /* __COMPLETE_H */
|