]> git.lyx.org Git - lyx.git/blob - src/support/os.h
Enable "lyx -dbg init" to run.
[lyx.git] / src / support / os.h
1 // -*- C++ -*-
2 /**
3  * \file os.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Ruurd A. Reitsma
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * wrap OS-specific stuff
12  */
13
14 #ifndef OS_H
15 #define OS_H
16
17 #include <string>
18
19
20 namespace lyx {
21 namespace support {
22 namespace os {
23
24 //
25 enum shell_type {
26         UNIX,   // Do we have to distinguish sh and csh?
27         CMD_EXE
28 };
29
30 // do some work just once
31 void init(int argc, char * argv[]);
32
33 // Returns the name of the NULL device (/dev/null, null).
34 std::string const & nulldev();
35 //
36 std::string current_root();
37 //
38 shell_type shell();
39 // DBCS aware!
40 std::string::size_type common_path(std::string const & p1, std::string const & p2);
41 // Converts a unix style path to host OS style.
42 std::string external_path(std::string const & p);
43 // Converts a host OS style path to unix style.
44 std::string internal_path(std::string const & p);
45 // is path absolute?
46 bool is_absolute_path(std::string const & p);
47 // returns a string suitable to be passed to popen when
48 // same for popen().
49         char const * popen_read_mode();
50
51 } // namespace os
52 } // namespace support
53 } // namespace lyx
54
55 #endif