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>
45 /***********************************
49 **********************************/
51 inline int access(const rtl::OUString
& ustrPath
, int mode
)
53 return access_u(ustrPath
.pData
, mode
);
56 /***********************************
60 The return value differs from the
63 @returns sal_True on success else
67 **********************************/
69 inline sal_Bool
realpath(
70 const rtl::OUString
& ustrFileName
,
71 rtl::OUString
& ustrResolvedName
)
73 return realpath_u(ustrFileName
.pData
, &ustrResolvedName
.pData
);
77 /***********************************
81 **********************************/
83 inline int lstat(const rtl::OUString
& ustrPath
, struct stat
& buf
)
85 return lstat_u(ustrPath
.pData
, &buf
);
88 /***********************************
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_ */