]> cygwin.com Git - cygwin-apps/setup.git/blob - script.h
* site.cc (do_download_site_info_thread): Correct spelling error.
[cygwin-apps/setup.git] / script.h
1 /*
2 * Copyright (c) 2001, Jan Nieuwenhuizen.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Jan Nieuwenhuizen <janneke@gnu.org>
13 *
14 */
15 #ifndef SCRIPT_H
16 #define SCRIPT_H
17
18 #include "String++.h"
19
20 /* Run the script fname, found in dir. If fname has suffix .sh, and
21 we have a Bourne shell, execute it using sh. Otherwise, if fname
22 has suffix .bat, execute using cmd */
23
24 void run_script (String const &dir, String const &fname);
25
26 /* Initialisation stuff for run_script: sh, cmd, CYGWINROOT and PATH */
27 void init_run_script ();
28
29 /* Run the scripts fname.sh and fname.bat, found in dir. */
30 void try_run_script (String const &dir, String const &fname);
31
32 #endif /* SCRIPT_H */
This page took 0.0345259999999999 seconds and 5 git commands to generate.