2014-05-05 21:30:43 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2003-03-12 01:47:05 +03:00
|
|
|
|
|
|
|
#ifndef _SPECIALSYSTEMDIRECTORY_H_
|
|
|
|
#define _SPECIALSYSTEMDIRECTORY_H_
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2012-06-06 06:08:30 +04:00
|
|
|
#include "nsIFile.h"
|
2003-03-12 01:47:05 +03:00
|
|
|
|
2010-04-27 16:57:34 +04:00
|
|
|
#ifdef MOZ_WIDGET_COCOA
|
2003-04-07 11:02:32 +04:00
|
|
|
# include "nsILocalFileMac.h"
|
|
|
|
# include "prenv.h"
|
2003-03-12 01:47:05 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
enum SystemDirectories {
|
2014-05-05 21:30:43 +04:00
|
|
|
OS_TemporaryDirectory = 2,
|
2019-09-04 15:04:52 +03:00
|
|
|
// 3 Used to be OS_CurrentProcessDirectory, which we never actually
|
|
|
|
// supported getting...
|
2014-05-15 00:15:46 +04:00
|
|
|
OS_CurrentWorkingDirectory = 4,
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-05-05 21:30:43 +04:00
|
|
|
Win_SystemDirectory = 201,
|
2003-03-12 01:47:05 +03:00
|
|
|
Win_WindowsDirectory = 202,
|
2014-05-05 21:30:43 +04:00
|
|
|
Win_HomeDirectory = 203,
|
|
|
|
Win_Programs = 205,
|
|
|
|
Win_Favorites = 209,
|
2018-03-28 11:06:43 +03:00
|
|
|
Win_Desktopdirectory = 213,
|
|
|
|
Win_Appdata = 221,
|
|
|
|
Win_Cookies = 223,
|
|
|
|
Win_LocalAppdata = 224,
|
|
|
|
Win_ProgramFiles = 225,
|
|
|
|
Win_Downloads = 226,
|
2018-06-26 13:41:00 +03:00
|
|
|
#if defined(MOZ_THUNDERBIRD) || defined(MOZ_SUITE)
|
|
|
|
Win_Documents = 228,
|
|
|
|
#endif
|
2019-03-19 01:31:59 +03:00
|
|
|
#if defined(MOZ_SANDBOX)
|
2018-03-28 11:06:43 +03:00
|
|
|
Win_LocalAppdataLow = 232,
|
2014-09-10 15:36:17 +04:00
|
|
|
#endif
|
2013-02-11 23:03:54 +04:00
|
|
|
|
2003-03-12 01:47:05 +03:00
|
|
|
Unix_HomeDirectory = 303,
|
2008-03-13 01:35:56 +03:00
|
|
|
Unix_XDG_Desktop = 304,
|
2018-06-25 09:55:00 +03:00
|
|
|
Unix_XDG_Download = 306
|
2003-03-12 01:47:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult GetSpecialSystemDirectory(SystemDirectories aSystemSystemDirectory,
|
2012-06-06 06:08:30 +04:00
|
|
|
nsIFile** aFile);
|
2010-04-27 16:57:34 +04:00
|
|
|
#ifdef MOZ_WIDGET_COCOA
|
2014-05-15 00:15:46 +04:00
|
|
|
nsresult GetOSXFolderType(short aDomain, OSType aFolderType,
|
|
|
|
nsIFile** aLocalFile);
|
2003-04-07 11:02:32 +04:00
|
|
|
#endif
|
2003-03-12 01:47:05 +03:00
|
|
|
|
|
|
|
#endif
|