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