Translated using Weblate (Chinese (Simplified))
[cygwin-setup.git] / mount.h
blobc451a02d82f236ba6921f3e443f44d01e8e2b08f
1 /*
2 * Copyright (c) 2000, 2001, 2002, 2003, 2006, 2008, 2013 Red Hat, Inc.
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.
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
12 * Written by DJ Delorie <dj@cygnus.com>
16 #ifndef SETUP_MOUNT_H
17 #define SETUP_MOUNT_H
18 #include <string>
19 #include "String++.h"
21 #define SETUP_KEY_WOW64 (is_64bit ? KEY_WOW64_64KEY : KEY_WOW64_32KEY)
23 void create_install_root ();
24 void read_mounts (const std::string);
25 void set_default_root_scope();
27 std::string cygpath (const std::string&);
28 void set_root_dir (const std::string);
29 const std::string &get_root_dir ();
31 #endif /* SETUP_MOUNT_H */