1999-05-19 01:43:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03: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
|
|
|
*
|
1999-11-06 06:43:54 +03: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.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-05-19 01:43:13 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
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"
|
2000-06-13 08:56:38 +04:00
|
|
|
#include "nsVoidBTree.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsFileSpec.h"
|
1999-09-10 02:05:05 +04:00
|
|
|
//#include "nsIBuffer.h"
|
1999-06-09 00:57:32 +04:00
|
|
|
//#include "nsIByteBufferInputStream.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsFileStream.h"
|
|
|
|
#include "nsFileSpecStreaming.h"
|
|
|
|
#include "nsSpecialSystemDirectory.h"
|
|
|
|
#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"
|
1999-11-10 05:11:08 +03:00
|
|
|
#include "nsSupportsArray.h"
|
1999-05-26 05:38:36 +04:00
|
|
|
#include "nsProxyEventPrivate.h"
|
|
|
|
#include "xpt_xdr.h"
|
|
|
|
#include "xptcall.h"
|
|
|
|
#include "nsIFileSpec.h"
|
2000-01-29 02:35:55 +03:00
|
|
|
#include "nsILocalFile.h"
|
1999-06-04 01:51:14 +04:00
|
|
|
#include "nsIGenericFactory.h"
|
1999-07-18 04:02:48 +04:00
|
|
|
#include "nsAVLTree.h"
|
1999-08-04 10:05:29 +04:00
|
|
|
#include "nsHashtableEnumerator.h"
|
2000-01-05 06:56:47 +03:00
|
|
|
#include "nsIPipe.h"
|
1999-10-01 06:43:27 +04:00
|
|
|
#include "nsCWeakReference.h"
|
1999-08-12 03:48:08 +04:00
|
|
|
#include "nsWeakReference.h"
|
1999-08-31 22:59:02 +04:00
|
|
|
#include "nsISizeOfHandler.h"
|
2000-01-18 01:32:13 +03:00
|
|
|
#include "nsTextFormatter.h"
|
2000-06-13 08:56:38 +04:00
|
|
|
#include "nsStatistics.h"
|
1999-11-17 00:14:52 +03:00
|
|
|
#include "nsStorageStream.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"
|
2000-03-22 06:07:39 +03:00
|
|
|
#include "nsIByteArrayInputStream.h"
|
1999-10-29 07:26:50 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "pure.h"
|
|
|
|
#endif
|
1999-05-26 05:38:36 +04:00
|
|
|
|
1999-07-18 04:02:48 +04:00
|
|
|
class dummyComparitor: public nsAVLNodeComparitor {
|
|
|
|
public:
|
|
|
|
virtual PRInt32 operator()(void* anItem1,void* anItem2)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
1999-05-19 01:43:13 +04:00
|
|
|
|
1999-08-10 23:25:27 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
extern NS_COM void
|
|
|
|
TestSegmentedBuffer();
|
|
|
|
#endif
|
|
|
|
|
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-07-18 04:02:48 +04:00
|
|
|
dummyComparitor dummy;
|
1999-05-19 01:43:13 +04:00
|
|
|
nsVoidArray();
|
2000-06-13 08:56:38 +04:00
|
|
|
nsVoidBTree();
|
1999-07-18 04:02:48 +04:00
|
|
|
nsAVLTree(dummy, nsnull);
|
1999-11-10 05:10:39 +03:00
|
|
|
nsSupportsArray();
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_GetNumberOfAtoms();
|
|
|
|
nsFileURL(NULL);
|
1999-08-10 23:25:27 +04:00
|
|
|
NS_NewPipe(NULL, NULL, NULL, 0, 0);
|
1999-05-19 01:43:13 +04:00
|
|
|
nsFileSpec s;
|
|
|
|
NS_NewIOFileStream(NULL, s, 0, 0);
|
|
|
|
nsInputFileStream(s, 0, 0);
|
|
|
|
nsPersistentFileDescriptor d;
|
|
|
|
ReadDescriptor(NULL, d);
|
|
|
|
new nsSpecialSystemDirectory(nsSpecialSystemDirectory::OS_DriveDirectory);
|
|
|
|
nsIThread::GetCurrent(NULL);
|
|
|
|
nsDeque(NULL);
|
|
|
|
NS_NewObserver(NULL, NULL);
|
1999-10-12 13:30:12 +04:00
|
|
|
nsTraceRefcnt::DumpStatistics();
|
1999-05-19 01:43:13 +04:00
|
|
|
nsXPIDLCString::Copy(NULL);
|
|
|
|
NS_NewEmptyEnumerator(NULL);
|
|
|
|
nsArrayEnumerator(NULL);
|
|
|
|
NS_NewIntersectionEnumerator(NULL, NULL, NULL);
|
|
|
|
NS_QuickSort(NULL, 0, 0, NULL, NULL);
|
2000-06-13 08:56:38 +04:00
|
|
|
nsStatistics("dummy");
|
2000-03-31 13:08:17 +04:00
|
|
|
nsString();
|
1999-10-13 02:32:10 +04:00
|
|
|
nsProxyObject(NULL, 0, NULL);
|
2000-04-20 12:52:05 +04:00
|
|
|
XPT_DoString(NULL, NULL, NULL);
|
|
|
|
XPT_DoHeader(NULL, NULL, NULL);
|
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
|
|
|
|
XPTC_InvokeByIndex(NULL, 0, 0, NULL);
|
|
|
|
NS_NewFileSpec(NULL);
|
|
|
|
xptc_dummy();
|
1999-06-12 08:30:13 +04:00
|
|
|
xptc_dummy2();
|
1999-05-26 08:54:36 +04:00
|
|
|
XPTI_GetInterfaceInfoManager();
|
1999-06-04 01:51:14 +04:00
|
|
|
NS_NewGenericFactory(NULL, NULL, NULL);
|
1999-08-04 10:05:29 +04:00
|
|
|
NS_NewHashtableEnumerator(NULL, NULL, NULL, NULL);
|
1999-10-01 06:43:27 +04:00
|
|
|
nsCWeakProxy(0, 0);
|
|
|
|
nsCWeakReferent(0);
|
1999-08-12 03:48:08 +04:00
|
|
|
NS_GetWeakReference(NULL);
|
1999-11-28 05:17:24 +03:00
|
|
|
nsCOMPtr<nsISupports> dummyFoo(do_GetInterface(nsnull));
|
1999-08-10 23:25:27 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
TestSegmentedBuffer();
|
|
|
|
#endif
|
1999-08-31 22:59:02 +04:00
|
|
|
NS_NewSizeOfHandler(0);
|
1999-11-17 00:14:52 +03:00
|
|
|
nsStorageStream();
|
|
|
|
NS_NewBinaryInputStream(0, 0);
|
2000-01-05 06:56:47 +03:00
|
|
|
nsString foo;
|
|
|
|
nsLinebreakConverter::ConvertStringLineBreaks(foo,
|
2000-01-29 02:35:55 +03:00
|
|
|
nsLinebreakConverter::eLinebreakAny, nsLinebreakConverter::eLinebreakContent);
|
2000-07-13 03:31:31 +04:00
|
|
|
NS_NewLocalFile(NULL, PR_FALSE, NULL);
|
2000-03-22 06:07:39 +03:00
|
|
|
NS_NewByteArrayInputStream (NULL, NULL, 0);
|
1999-05-19 01:43:13 +04:00
|
|
|
}
|