Mozilla/mozilla/mailnews/import/src/nsImportStringBundle.h
scott%scott-macgregor.org 8208031ddc Bug #379070 --> remove nsCRT methods from import, extensions, db.
sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@227679 18797224-902f-48f8-a5cc-f745e15eee43
2007-06-07 23:19:13 +00:00

78 lines
3.0 KiB
C++

/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef _nsImportStringBundle_H__
#define _nsImportStringBundle_H__
#include "nsString.h"
class nsIStringBundle;
class nsImportStringBundle
{
public:
static PRUnichar* GetStringByID(PRInt32 aStringID,
nsIStringBundle *aBundle = nsnull);
static void GetStringByID(PRInt32 aStringID,
nsIStringBundle *aBundle,
nsString &aResult);
static nsresult GetStringBundle(const char *aPropertyURL,
nsIStringBundle **aBundle);
static nsresult GetStringBundleProxy(nsIStringBundle *aOriginalBundle,
nsIStringBundle **aProxy);
};
#define IMPORT_MSGS_URL "chrome://messenger/locale/importMsgs.properties"
#define IMPORT_NO_ADDRBOOKS 2000
#define IMPORT_ERROR_AB_NOTINITIALIZED 2001
#define IMPORT_ERROR_AB_NOTHREAD 2002
#define IMPORT_ERROR_GETABOOK 2003
#define IMPORT_NO_MAILBOXES 2004
#define IMPORT_ERROR_MB_NOTINITIALIZED 2005
#define IMPORT_ERROR_MB_NOTHREAD 2006
#define IMPORT_ERROR_MB_NOPROXY 2007
#define IMPORT_ERROR_MB_FINDCHILD 2008
#define IMPORT_ERROR_MB_CREATE 2009
#define IMPORT_ERROR_MB_NODESTFOLDER 2010
#define IMPORT_FIELD_DESC_START 2100
#define IMPORT_FIELD_DESC_END 2135
#endif /* _nsImportStringBundle_H__ */