1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: uunxapi.hxx,v $
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_
38 #ifndef _RTL_USTRING_HXX_
39 #include <rtl/ustring.hxx>
42 //###########################
43 inline rtl::OString
OUStringToOString(const rtl_uString
* s
)
45 return rtl::OUStringToOString(
46 rtl::OUString(const_cast<rtl_uString
*>(s
)),
47 osl_getThreadTextEncoding());
53 /***********************************
57 **********************************/
59 inline int access(const rtl::OUString
& ustrPath
, int mode
)
61 return access_u(ustrPath
.pData
, mode
);
64 /***********************************
68 The return value differs from the
71 @returns sal_True on success else
75 **********************************/
77 inline sal_Bool
realpath(
78 const rtl::OUString
& ustrFileName
,
79 rtl::OUString
& ustrResolvedName
)
81 return realpath_u(ustrFileName
.pData
, &ustrResolvedName
.pData
);
85 /***********************************
89 **********************************/
91 inline int lstat(const rtl::OUString
& ustrPath
, struct stat
& buf
)
93 return lstat_u(ustrPath
.pData
, &buf
);
96 /***********************************
99 **********************************/
100 inline int mkdir(const rtl::OUString
& aPath
, mode_t aMode
)
102 return mkdir_u(aPath
.pData
, aMode
);
105 } // end namespace osl
108 #endif /* _OSL_UUNXAPI_HXX_ */