X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Ffish.h;h=59f2e10acf82e846ff95a65c5b318f339fced995;hb=98430c35faa073c60d4c00542c090fe0407c5af7;hp=cad8073329436895311435d7801edc1180fcc139;hpb=8863ecde5dba262c0736da7505a9fa3655ed42f6;p=libguestfs.git diff --git a/fish/fish.h b/fish/fish.h index cad8073..59f2e10 100644 --- a/fish/fish.h +++ b/fish/fish.h @@ -1,4 +1,4 @@ -/* libguestfs - the guestfsd daemon +/* libguestfs - guestfish shell * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify @@ -77,9 +77,20 @@ extern int do_glob (const char *cmd, int argc, char *argv[]); /* in more.c */ extern int do_more (const char *cmd, int argc, char *argv[]); +/* in rc.c (remote control) */ +extern void rc_listen (void); +extern int rc_remote (int pid, const char *cmd, int argc, char *argv[], + int exit_on_error); + +/* in reopen.c */ +extern int do_reopen (const char *cmd, int argc, char *argv[]); + /* in time.c */ extern int do_time (const char *cmd, int argc, char *argv[]); +/* in tilde.c */ +extern char *try_tilde_expansion (char *path); + /* This should just list all the built-in commands so they can * be added to the generated auto-completion code. */ @@ -92,6 +103,7 @@ extern int do_time (const char *cmd, int argc, char *argv[]); "lcd", \ "glob", \ "more", "less", \ + "reopen", \ "time" #endif /* FISH_H */