Milán Major

netscape-revival

1 branch
Code

sun-java/runtime/proxy_stub.c

/*
 * @(#)proxy_stub.c	1.3 95/01/31 Chris Warth
 *
 * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Permission to use, copy, modify, and distribute this software
 * and its documentation for NON-COMMERCIAL purposes and without
 * fee is hereby granted provided that this copyright notice
 * appears in all copies. Please refer to the file "copyright.html"
 * for further important copyright and licensing information.
 *
 * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
 * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
 * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
 * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
 */

#include "oobj.h"
#include "interpreter.h"

unsigned char *proxy_invokemethod(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickinvokemethod(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_clone(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetfield(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputfield(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetfield16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputfield16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetfield8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputfield8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetthis(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputthis(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetthis16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputthis16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetthis8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputthis8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetstatic(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputstatic(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetstatic16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputstatic16(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickgetstatic8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_quickputstatic8(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}

unsigned char *proxy_checkcast(HObject *o, unsigned char *pc, struct execenv *ee)
{
    return 0;
}