1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsDirectoryServiceUtils_h___
8 #define nsDirectoryServiceUtils_h___
10 #include "nsIServiceManager.h"
11 #include "nsIProperties.h"
12 #include "nsServiceManagerUtils.h"
14 #include "nsXPCOMCID.h"
18 NS_GetSpecialDirectory(const char* aSpecialDirName
, nsIFile
** aResult
)
21 nsCOMPtr
<nsIProperties
> serv(do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID
,
27 return serv
->Get(aSpecialDirName
, NS_GET_IID(nsIFile
),
28 reinterpret_cast<void**>(aResult
));