mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
First Checked In.
This commit is contained in:
parent
1bcca42778
commit
f8327c01f7
10
js/src/xpconnect/public/MANIFEST
Normal file
10
js/src/xpconnect/public/MANIFEST
Normal file
@ -0,0 +1,10 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
nsIXPConnect.h
|
||||
nsIXPCScriptable.h
|
||||
xpccomponents.h
|
||||
xpcjsid.h
|
||||
xpclog.h
|
||||
nsrootidl.h
|
6
xpcom/libxpt/public/MANIFEST
Normal file
6
xpcom/libxpt/public/MANIFEST
Normal file
@ -0,0 +1,6 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xpt_struct.h
|
||||
xpt_xdr.h
|
7
xpcom/libxpt/xptcall/public/MANIFEST
Normal file
7
xpcom/libxpt/xptcall/public/MANIFEST
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xptcall.h
|
||||
xptcstubsdecl.inc
|
||||
xptcstubsdef.inc
|
41
xpcom/libxpt/xptcall/src/md/mac/xptcstubs_.mac.cpp
Normal file
41
xpcom/libxpt/xptcall/src/md/mac/xptcstubs_.mac.cpp
Normal file
@ -0,0 +1,41 @@
|
||||
/* -*- Mode: C; tab-width: 8; 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) 1999 Netscape Communications Corporation. All Rights
|
||||
* Reserved.
|
||||
*/
|
||||
|
||||
/* Implement shared vtbl methods. */
|
||||
|
||||
#pragma export on
|
||||
|
||||
#include "xptcprivate.h"
|
||||
|
||||
#define STUB_ENTRY(n) \
|
||||
nsresult nsXPTCStubBase::Stub##n() \
|
||||
{ \
|
||||
NS_ASSERTION(0,"nsXPTCStubBase::Stub called on unsupported platform"); \
|
||||
return NS_ERROR_NOT_IMPLEMENTED; \
|
||||
}
|
||||
|
||||
#define SENTINEL_ENTRY(n) \
|
||||
nsresult nsXPTCStubBase::Sentinel##n() \
|
||||
{ \
|
||||
NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
|
||||
return NS_ERROR_NOT_IMPLEMENTED; \
|
||||
}
|
||||
|
||||
#include "xptcstubsdef.inc"
|
||||
|
||||
#pragma export off
|
7
xpcom/libxpt/xptinfo/public/MANIFEST
Normal file
7
xpcom/libxpt/xptinfo/public/MANIFEST
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xptinfo.h
|
||||
nsIInterfaceInfoManager.h
|
||||
nsIInterfaceInfo.h
|
7
xpcom/reflect/xptcall/public/MANIFEST
Normal file
7
xpcom/reflect/xptcall/public/MANIFEST
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xptcall.h
|
||||
xptcstubsdecl.inc
|
||||
xptcstubsdef.inc
|
41
xpcom/reflect/xptcall/src/md/mac/xptcstubs_.mac.cpp
Normal file
41
xpcom/reflect/xptcall/src/md/mac/xptcstubs_.mac.cpp
Normal file
@ -0,0 +1,41 @@
|
||||
/* -*- Mode: C; tab-width: 8; 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) 1999 Netscape Communications Corporation. All Rights
|
||||
* Reserved.
|
||||
*/
|
||||
|
||||
/* Implement shared vtbl methods. */
|
||||
|
||||
#pragma export on
|
||||
|
||||
#include "xptcprivate.h"
|
||||
|
||||
#define STUB_ENTRY(n) \
|
||||
nsresult nsXPTCStubBase::Stub##n() \
|
||||
{ \
|
||||
NS_ASSERTION(0,"nsXPTCStubBase::Stub called on unsupported platform"); \
|
||||
return NS_ERROR_NOT_IMPLEMENTED; \
|
||||
}
|
||||
|
||||
#define SENTINEL_ENTRY(n) \
|
||||
nsresult nsXPTCStubBase::Sentinel##n() \
|
||||
{ \
|
||||
NS_ASSERTION(0,"nsXPTCStubBase::Sentinel called"); \
|
||||
return NS_ERROR_NOT_IMPLEMENTED; \
|
||||
}
|
||||
|
||||
#include "xptcstubsdef.inc"
|
||||
|
||||
#pragma export off
|
7
xpcom/reflect/xptinfo/public/MANIFEST
Normal file
7
xpcom/reflect/xptinfo/public/MANIFEST
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xptinfo.h
|
||||
nsIInterfaceInfoManager.h
|
||||
nsIInterfaceInfo.h
|
6
xpcom/typelib/xpt/public/MANIFEST
Normal file
6
xpcom/typelib/xpt/public/MANIFEST
Normal file
@ -0,0 +1,6 @@
|
||||
#
|
||||
# This is a list of local files which get copied to the mozilla:dist directory
|
||||
#
|
||||
|
||||
xpt_struct.h
|
||||
xpt_xdr.h
|
Loading…
Reference in New Issue
Block a user