]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxlib.h
make doc++ able to generate the source documentation for lyx
[lyx.git] / src / support / lyxlib.h
index 1688e2d015c5b925060637ac646190b0fe94df99..cfde2af5baf1db23c93abe6ccb3133439bc1bef7 100644 (file)
@@ -4,8 +4,8 @@
  * 
  *           LyX, The Document Processor
  *        
- *           Copyright (C) 1995 Matthias Ettrich
- *           Copyright (C) 1995-1999 The LyX Team.
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1995-2000 The LyX Team.
  *
  * ====================================================== */
 
@@ -20,6 +20,7 @@
 
 // This should have been a namespace
 #ifdef CXX_WORKING_NAMESPACES
+///
 namespace lyx {
        ///
        char * getcwd(char * buffer, size_t size);
@@ -35,8 +36,13 @@ namespace lyx {
        int kill(long int pid, int sig);
        ///
        void abort();
+       ///
+       int mkdir(char const * pathname, unsigned long int mode);
+       ///
+       int putenv(char const * str);
 }
 #else
+///
 struct lyx {
        ///
        static char * getcwd(char * buffer, size_t size);
@@ -52,6 +58,10 @@ struct lyx {
        static int kill(long int pid, int sig);
        ///
        static void abort();
+       ///
+       static int mkdir(char const * pathname, unsigned long int mode);
+       ///
+       static int putenv(char const * str);
 };
 #endif // CXX_WORKING_NAMESPACES
 #endif