зеркало из https://github.com/mozilla/pjs.git
74 строки
2.4 KiB
C++
74 строки
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef nsIProfile_h__
|
|
#define nsIProfile_h__
|
|
|
|
#include "jsapi.h"
|
|
#include "nsISupports.h"
|
|
#include "nsFileSpec.h"
|
|
|
|
/** new ids **/
|
|
#define NS_IPROFILE_IID \
|
|
{ /* {02b0625a-e7f3-11d2-9f5a-006008a6efe9} */ \
|
|
0x02b0625a, \
|
|
0xe7f3, \
|
|
0x11d2, \
|
|
{ 0x9f, 0x5a, 0x00, 0x60, 0x08, 0xa6, 0xef, 0xe9 } \
|
|
}
|
|
|
|
#define NS_PROFILE_CID \
|
|
{ /* {02b0625b-e7f3-11d2-9f5a-006008a6efe9} */ \
|
|
0x02b0625b, \
|
|
0xe7f3, \
|
|
0x11d2, \
|
|
{ 0x9f, 0x5a, 0x00, 0x60, 0x08, 0xa6, 0xef, 0xe9 } \
|
|
}
|
|
|
|
#define NS_USING_PROFILES 1
|
|
|
|
/*
|
|
* Return values
|
|
*/
|
|
|
|
class nsIProfile: public nsISupports {
|
|
public:
|
|
|
|
static const nsIID& GetIID(void) { static nsIID iid = NS_IPROFILE_IID; return iid; }
|
|
|
|
// Initialize/shutdown
|
|
NS_IMETHOD Startup(char *filename) = 0;
|
|
NS_IMETHOD Shutdown() = 0;
|
|
|
|
// Getters
|
|
NS_IMETHOD GetProfileDir(const char *profileName, nsFileSpec* profileDir) = 0;
|
|
NS_IMETHOD GetProfileCount(int *numProfiles) = 0;
|
|
NS_IMETHOD GetSingleProfile(char **profileName) = 0;
|
|
NS_IMETHOD GetCurrentProfile(char **profileName) = 0;
|
|
NS_IMETHOD GetFirstProfile(char **profileName) = 0;
|
|
NS_IMETHOD GetCurrentProfileDir(nsFileSpec* profileDir) = 0;
|
|
|
|
// Setters
|
|
NS_IMETHOD SetProfileDir(const char *profileName, const nsFileSpec& profileDir) = 0;
|
|
|
|
// Creators
|
|
NS_IMETHOD CreateNewProfile(char* data) = 0;
|
|
};
|
|
|
|
#endif /* nsIProfile_h__ */
|