2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-05-19 01:43:13 +04:00
|
|
|
|
|
|
|
// Force references to all of the symbols that we want exported from
|
|
|
|
// the dll that are located in the .lib files we link with
|
|
|
|
|
|
|
|
#include "nsVoidArray.h"
|
2002-01-16 01:43:37 +03:00
|
|
|
#include "nsValueArray.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsIAtom.h"
|
1999-09-10 02:05:05 +04:00
|
|
|
//#include "nsIBuffer.h"
|
2003-03-15 04:04:32 +03:00
|
|
|
#include "nsIByteArrayInputStream.h"
|
2000-07-29 06:58:43 +04:00
|
|
|
#include "nsFixedSizeAllocator.h"
|
2002-01-24 09:48:58 +03:00
|
|
|
#include "nsRecyclingAllocator.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsIThread.h"
|
|
|
|
#include "nsDeque.h"
|
1999-05-29 04:51:17 +04:00
|
|
|
#include "nsObserver.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsTraceRefcnt.h"
|
|
|
|
#include "nsXPIDLString.h"
|
|
|
|
#include "nsIEnumerator.h"
|
|
|
|
#include "nsEnumeratorUtils.h"
|
|
|
|
#include "nsQuickSort.h"
|
2000-03-31 14:19:31 +04:00
|
|
|
#include "nsString.h"
|
2001-08-30 08:42:01 +04:00
|
|
|
#include "nsPrintfCString.h"
|
1999-11-10 05:11:08 +03:00
|
|
|
#include "nsSupportsArray.h"
|
2002-10-07 23:11:18 +04:00
|
|
|
#include "nsArray.h"
|
|
|
|
#include "nsArrayEnumerator.h"
|
1999-05-26 05:38:36 +04:00
|
|
|
#include "nsProxyEventPrivate.h"
|
|
|
|
#include "xpt_xdr.h"
|
|
|
|
#include "xptcall.h"
|
2000-01-29 02:35:55 +03:00
|
|
|
#include "nsILocalFile.h"
|
1999-06-04 01:51:14 +04:00
|
|
|
#include "nsIGenericFactory.h"
|
1999-08-04 10:05:29 +04:00
|
|
|
#include "nsHashtableEnumerator.h"
|
2000-01-05 06:56:47 +03:00
|
|
|
#include "nsIPipe.h"
|
2003-01-18 05:15:14 +03:00
|
|
|
#include "nsStreamUtils.h"
|
1999-10-01 06:43:27 +04:00
|
|
|
#include "nsCWeakReference.h"
|
1999-08-12 03:48:08 +04:00
|
|
|
#include "nsWeakReference.h"
|
2000-01-18 01:32:13 +03:00
|
|
|
#include "nsTextFormatter.h"
|
2002-02-19 03:13:29 +03:00
|
|
|
#include "nsIStorageStream.h"
|
1999-12-02 03:31:45 +03:00
|
|
|
#include "nsLinebreakConverter.h"
|
1999-11-17 00:14:52 +03:00
|
|
|
#include "nsIBinaryInputStream.h"
|
1999-11-28 05:17:24 +03:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
2001-09-06 01:28:38 +04:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2000-08-23 21:27:06 +04:00
|
|
|
#include "nsReadableUtils.h"
|
2000-08-22 09:59:06 +04:00
|
|
|
#include "nsStaticNameTable.h"
|
2001-01-23 01:38:43 +03:00
|
|
|
#include "nsProcess.h"
|
2000-12-13 00:58:14 +03:00
|
|
|
#include "nsSlidingString.h"
|
2003-03-11 00:09:31 +03:00
|
|
|
#include "nsStringEnumerator.h"
|
2001-06-17 09:23:38 +04:00
|
|
|
#include "nsIInputStreamTee.h"
|
2002-10-03 07:43:11 +04:00
|
|
|
#include "nsCheapSets.h"
|
1999-10-29 07:26:50 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "pure.h"
|
|
|
|
#endif
|
2003-04-02 10:53:57 +04:00
|
|
|
#include "nsHashKeys.h"
|
2003-04-10 17:27:16 +04:00
|
|
|
#include "nsTHashtable.h"
|
2000-08-31 17:29:29 +04:00
|
|
|
#include "pldhash.h"
|
2001-11-01 02:35:07 +03:00
|
|
|
#include "nsVariant.h"
|
2003-03-15 04:04:32 +03:00
|
|
|
#include "nsEscape.h"
|
1999-08-10 23:25:27 +04:00
|
|
|
|
1999-05-19 01:43:13 +04:00
|
|
|
void XXXNeverCalled()
|
|
|
|
{
|
2000-01-18 01:32:13 +03:00
|
|
|
nsTextFormatter::snprintf(nsnull,0,nsnull);
|
2000-03-05 13:14:50 +03:00
|
|
|
nsTextFormatter::smprintf(nsnull, nsnull);
|
|
|
|
nsTextFormatter::smprintf_free(nsnull);
|
1999-05-19 01:43:13 +04:00
|
|
|
nsVoidArray();
|
2001-12-21 04:10:07 +03:00
|
|
|
nsSmallVoidArray();
|
2002-08-06 08:15:10 +04:00
|
|
|
nsStringHashSet();
|
|
|
|
nsCStringHashSet();
|
|
|
|
nsInt32HashSet();
|
|
|
|
nsVoidHashSet();
|
2002-10-03 07:43:11 +04:00
|
|
|
nsCheapStringSet();
|
|
|
|
nsCheapInt32Set();
|
2002-01-16 01:43:37 +03:00
|
|
|
nsValueArray(0);
|
1999-11-10 05:10:39 +03:00
|
|
|
nsSupportsArray();
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_GetNumberOfAtoms();
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewPipe2(nsnull, nsnull, PR_FALSE, PR_FALSE, 0, 0, nsnull);
|
|
|
|
NS_NewInputStreamReadyEvent(nsnull, nsnull, nsnull);
|
|
|
|
NS_NewOutputStreamReadyEvent(nsnull, nsnull, nsnull);
|
|
|
|
NS_AsyncCopy(nsnull, nsnull, PR_TRUE, PR_TRUE, 0, 0, nsnull);
|
2003-04-10 17:27:16 +04:00
|
|
|
PL_DHashStubEnumRemove(nsnull, nsnull, nsnull, nsnull);
|
2003-06-03 14:52:26 +04:00
|
|
|
nsIDHashKey::HashKey(nsnull);
|
2000-07-29 06:58:43 +04:00
|
|
|
nsFixedSizeAllocator a;
|
2002-01-24 09:48:58 +03:00
|
|
|
nsRecyclingAllocator recyclingAllocator(2);
|
2000-07-29 07:13:41 +04:00
|
|
|
a.Init(0, 0, 0, 0, 0);
|
|
|
|
a.Alloc(0);
|
|
|
|
a.Free(0, 0);
|
2003-06-03 14:52:26 +04:00
|
|
|
nsIThread::GetCurrent(nsnull);
|
|
|
|
nsDeque(nsnull);
|
|
|
|
NS_NewObserver(nsnull, nsnull);
|
1999-10-12 13:30:12 +04:00
|
|
|
nsTraceRefcnt::DumpStatistics();
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewEmptyEnumerator(nsnull);
|
|
|
|
nsArrayEnumerator(nsnull);
|
|
|
|
NS_QuickSort(nsnull, 0, 0, nsnull, nsnull);
|
2000-03-31 13:08:17 +04:00
|
|
|
nsString();
|
2003-06-03 14:52:26 +04:00
|
|
|
nsProxyObject(nsnull, 0, nsnull);
|
|
|
|
XPT_DoString(nsnull, nsnull, nsnull);
|
|
|
|
XPT_DoHeader(nsnull, nsnull, nsnull);
|
1999-05-26 05:38:36 +04:00
|
|
|
#ifdef DEBUG
|
1999-10-29 07:26:50 +04:00
|
|
|
PurePrintf(0);
|
1999-05-26 05:38:36 +04:00
|
|
|
#endif
|
2003-06-03 14:52:26 +04:00
|
|
|
XPTC_InvokeByIndex(nsnull, 0, 0, nsnull);
|
1999-05-26 05:38:36 +04:00
|
|
|
xptc_dummy();
|
1999-06-12 08:30:13 +04:00
|
|
|
xptc_dummy2();
|
1999-05-26 08:54:36 +04:00
|
|
|
XPTI_GetInterfaceInfoManager();
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewGenericFactory(nsnull, nsnull);
|
|
|
|
NS_NewGenericModule2(nsnull, nsnull);
|
|
|
|
NS_NewHashtableEnumerator(nsnull, nsnull, nsnull, nsnull);
|
1999-10-01 06:43:27 +04:00
|
|
|
nsCWeakProxy(0, 0);
|
|
|
|
nsCWeakReferent(0);
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_GetWeakReference(nsnull);
|
1999-11-28 05:17:24 +03:00
|
|
|
nsCOMPtr<nsISupports> dummyFoo(do_GetInterface(nsnull));
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewByteArrayInputStream(nsnull, nsnull, 0);
|
2002-02-19 03:13:29 +03:00
|
|
|
NS_NewStorageStream(0,0, nsnull);
|
2000-01-05 06:56:47 +03:00
|
|
|
nsString foo;
|
2001-08-30 08:42:01 +04:00
|
|
|
nsPrintfCString bar("");
|
2000-01-05 06:56:47 +03:00
|
|
|
nsLinebreakConverter::ConvertStringLineBreaks(foo,
|
2000-01-29 02:35:55 +03:00
|
|
|
nsLinebreakConverter::eLinebreakAny, nsLinebreakConverter::eLinebreakContent);
|
2003-06-03 14:52:26 +04:00
|
|
|
NS_NewLocalFile(nsString(), PR_FALSE, nsnull);
|
|
|
|
NS_NewNativeLocalFile(nsCString(), PR_FALSE, nsnull);
|
2001-01-23 00:52:01 +03:00
|
|
|
nsProcess();
|
2000-08-22 09:59:06 +04:00
|
|
|
nsStaticCaseInsensitiveNameTable();
|
2000-08-23 21:27:06 +04:00
|
|
|
nsAutoString str1;
|
|
|
|
nsCAutoString str2;
|
|
|
|
ToNewUnicode(str1);
|
|
|
|
ToNewUnicode(str2);
|
|
|
|
ToNewCString(str1);
|
|
|
|
ToNewCString(str2);
|
2003-06-03 14:52:26 +04:00
|
|
|
PL_DHashTableFinish(nsnull);
|
|
|
|
nsSlidingString sliding(nsnull, nsnull, nsnull);
|
|
|
|
NS_NewInputStreamTee(nsnull, nsnull, nsnull);
|
2002-10-07 23:11:18 +04:00
|
|
|
NS_NewArray(nsnull);
|
|
|
|
nsCOMArray<nsISupports> dummyArray;
|
|
|
|
NS_NewArray(nsnull, dummyArray);
|
|
|
|
NS_NewArrayEnumerator(nsnull, dummyArray);
|
2001-11-01 02:35:07 +03:00
|
|
|
nsVariant();
|
2003-03-15 04:04:32 +03:00
|
|
|
nsUnescape(nsnull);
|
|
|
|
nsEscape(nsnull, url_XAlphas);
|
2003-03-11 00:09:31 +03:00
|
|
|
nsStringArray array;
|
|
|
|
NS_NewStringEnumerator(nsnull, &array);
|
|
|
|
NS_NewAdoptingStringEnumerator(nsnull, &array);
|
|
|
|
nsCStringArray carray;
|
|
|
|
NS_NewUTF8StringEnumerator(nsnull, &carray);
|
|
|
|
NS_NewAdoptingUTF8StringEnumerator(nsnull, &carray);
|
2001-03-12 23:43:02 +03:00
|
|
|
}
|