merge the formfield patch from ooo-build
[ooovba.git] / sal / osl / unx / uunxapi.hxx
blobb87754a21f9ca963d8ac129ea8b796f0648b688e
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: uunxapi.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _OSL_UUNXAPI_HXX_
32 #define _OSL_UUNXAPI_HXX_
34 #ifndef _OSL_UUNXAPI_H_
35 #include "uunxapi.h"
36 #endif
38 #ifndef _RTL_USTRING_HXX_
39 #include <rtl/ustring.hxx>
40 #endif
42 namespace osl
45 /***********************************
46 osl::access
48 @see access
49 **********************************/
51 inline int access(const rtl::OUString& ustrPath, int mode)
53 return access_u(ustrPath.pData, mode);
56 /***********************************
57 osl::realpath
59 @descr
60 The return value differs from the
61 realpath function
63 @returns sal_True on success else
64 sal_False
66 @see realpath
67 **********************************/
69 inline sal_Bool realpath(
70 const rtl::OUString& ustrFileName,
71 rtl::OUString& ustrResolvedName)
73 return realpath_u(ustrFileName.pData, &ustrResolvedName.pData);
77 /***********************************
78 osl::lstat
80 @see lstat
81 **********************************/
83 inline int lstat(const rtl::OUString& ustrPath, struct stat& buf)
85 return lstat_u(ustrPath.pData, &buf);
88 /***********************************
89 osl::mkdir
90 @see mkdir
91 **********************************/
92 inline int mkdir(const rtl::OUString& aPath, mode_t aMode)
94 return mkdir_u(aPath.pData, aMode);
97 } // end namespace osl
100 #endif /* _OSL_UUNXAPI_HXX_ */