mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
60 lines
2.2 KiB
C
60 lines
2.2 KiB
C
|
/* -*- 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.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/
|
||
|
*
|
||
|
* 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 Communicator client code, released
|
||
|
* March 31, 1998.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is Netscape Communications
|
||
|
* Corporation. Portions created by Netscape are
|
||
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
||
|
* Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
*
|
||
|
* Alternatively, the contents of this file may be used under the
|
||
|
* terms of the GNU Public License (the "GPL"), in which case the
|
||
|
* provisions of the GPL are applicable instead of those above.
|
||
|
* If you wish to allow use of your version of this file only
|
||
|
* under the terms of the GPL and not to allow others to use your
|
||
|
* version of this file under the NPL, indicate your decision by
|
||
|
* deleting the provisions above and replace them with the notice
|
||
|
* and other provisions required by the GPL. If you do not delete
|
||
|
* the provisions above, a recipient may use your version of this
|
||
|
* file under either the NPL or the GPL.
|
||
|
*
|
||
|
* This Original Code has been modified by IBM Corporation.
|
||
|
* Modifications made by IBM described herein are
|
||
|
* Copyright (c) International Business Machines
|
||
|
* Corporation, 2000
|
||
|
*
|
||
|
* Modifications to Mozilla code or documentation
|
||
|
* identified per MPL Section 3.3
|
||
|
*
|
||
|
* Date Modified by Description of modification
|
||
|
* 04/20/2000 IBM Corp. OS/2 VisualAge build.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* This file is part of the Java-vendor-neutral implementation of LiveConnect
|
||
|
*
|
||
|
* It contains the native code implementation of JS's JavaObject class.
|
||
|
*
|
||
|
* An instance of JavaObject is the JavaScript reflection of a Java object.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
/* snip ... */
|
||
|
|