All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.internal.ole.win32.COMObject Maven / Gradle / Ivy

Go to download

SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2012 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.ole.win32;

import java.util.Hashtable;
import org.eclipse.swt.*;
import org.eclipse.swt.internal.*;
import org.eclipse.swt.internal.win32.*;


public class COMObject {

	public int /*long*/ ppVtable;
	
	static private final int MAX_ARG_COUNT = 12;
	static private final int MAX_VTABLE_LENGTH = 80;
	static private Callback[][] Callbacks = new Callback[MAX_VTABLE_LENGTH][MAX_ARG_COUNT];
	static private Hashtable ObjectMap = new Hashtable();
	
public COMObject(int[] argCounts) {
	int /*long*/[] callbackAddresses = new int /*long*/[argCounts.length];
	synchronized (Callbacks) {
		for (int i = 0, length = argCounts.length; i < length; i++){
			if ((Callbacks[i][argCounts[i]]) == null) {
				Callbacks[i][argCounts[i]] = new Callback(this.getClass(), "callback"+i, argCounts[i] + 1, true, COM.E_FAIL); //$NON-NLS-1$
				if (Callbacks[i][argCounts[i]].getAddress() == 0) SWT.error(SWT.ERROR_NO_MORE_CALLBACKS);
			}
			callbackAddresses[i] = Callbacks[i][argCounts[i]].getAddress();
		}
	}

	int /*long*/ pVtable = OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, OS.PTR_SIZEOF * argCounts.length);
	COM.MoveMemory(pVtable, callbackAddresses, OS.PTR_SIZEOF * argCounts.length);
	ppVtable = OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, OS.PTR_SIZEOF);
	COM.MoveMemory(ppVtable, new int /*long*/[] {pVtable}, OS.PTR_SIZEOF);
	ObjectMap.put(new LONG(ppVtable), this);
}

public static GUID IIDFromString(String lpsz) {
	// create a null terminated array of char
	char[] buffer = (lpsz +"\0").toCharArray();

	// invoke system method
	GUID lpiid = new GUID();
	if (COM.IIDFromString(buffer, lpiid) == COM.S_OK)
		return lpiid;
	return null;
}

static int /*long*/ callback0(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method0(args);
}
static int /*long*/ callback1(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method1(args);
}
static int /*long*/ callback2(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method2(args);
}
static int /*long*/ callback3(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method3(args);
}
static int /*long*/ callback4(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method4(args);
}
static int /*long*/ callback5(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method5(args);
}
static int /*long*/ callback6(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method6(args);
}
static int /*long*/ callback7(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method7(args);
}
static int /*long*/ callback8(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method8(args);
}
static int /*long*/ callback9(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method9(args);
}
static int /*long*/ callback10(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method10(args);
}
static int /*long*/ callback11(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method11(args);
}
static int /*long*/ callback12(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method12(args);
}
static int /*long*/ callback13(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method13(args);
}
static int /*long*/ callback14(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method14(args);
}
static int /*long*/ callback15(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method15(args);
}
static int /*long*/ callback16(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method16(args);
}
static int /*long*/ callback17(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method17(args);
}
static int /*long*/ callback18(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method18(args);
}
static int /*long*/ callback19(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method19(args);
}
static int /*long*/ callback20(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method20(args);
}
static int /*long*/ callback21(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method21(args);
}
static int /*long*/ callback22(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method22(args);
}
static int /*long*/ callback23(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method23(args);
}
static int /*long*/ callback24(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method24(args);
}
static int /*long*/ callback25(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method25(args);
}
static int /*long*/ callback26(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method26(args);
}
static int /*long*/ callback27(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method27(args);
}
static int /*long*/ callback28(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method28(args);
}
static int /*long*/ callback29(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method29(args);
}
static int /*long*/ callback30(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method30(args);
}
static int /*long*/ callback31(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method31(args);
}
static int /*long*/ callback32(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method32(args);
}
static int /*long*/ callback33(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method33(args);
}
static int /*long*/ callback34(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method34(args);
}
static int /*long*/ callback35(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method35(args);
}
static int /*long*/ callback36(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method36(args);
}
static int /*long*/ callback37(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method37(args);
}
static int /*long*/ callback38(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method38(args);
}
static int /*long*/ callback39(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method39(args);
}
static int /*long*/ callback40(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method40(args);
}
static int /*long*/ callback41(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method41(args);
}
static int /*long*/ callback42(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method42(args);
}
static int /*long*/ callback43(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method43(args);
}
static int /*long*/ callback44(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method44(args);
}
static int /*long*/ callback45(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method45(args);
}
static int /*long*/ callback46(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method46(args);
}
static int /*long*/ callback47(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method47(args);
}
static int /*long*/ callback48(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method48(args);
}
static int /*long*/ callback49(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method49(args);
}
static int /*long*/ callback50(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method50(args);
}
static int /*long*/ callback51(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method51(args);
}
static int /*long*/ callback52(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method52(args);
}
static int /*long*/ callback53(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method53(args);
}
static int /*long*/ callback54(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method54(args);
}
static int /*long*/ callback55(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method55(args);
}
static int /*long*/ callback56(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method56(args);
}
static int /*long*/ callback57(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method57(args);
}
static int /*long*/ callback58(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method58(args);
}
static int /*long*/ callback59(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method59(args);
}
static int /*long*/ callback60(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method60(args);
}
static int /*long*/ callback61(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method61(args);
}
static int /*long*/ callback62(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method62(args);
}
static int /*long*/ callback63(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method63(args);
}
static int /*long*/ callback64(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method64(args);
}
static int /*long*/ callback65(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method65(args);
}
static int /*long*/ callback66(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method66(args);
}
static int /*long*/ callback67(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method67(args);
}
static int /*long*/ callback68(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method68(args);
}
static int /*long*/ callback69(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method69(args);
}
static int /*long*/ callback70(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method70(args);
}
static int /*long*/ callback71(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method71(args);
}
static int /*long*/ callback72(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method72(args);
}
static int /*long*/ callback73(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method73(args);
}
static int /*long*/ callback74(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method74(args);
}
static int /*long*/ callback75(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method75(args);
}
static int /*long*/ callback76(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method76(args);
}
static int /*long*/ callback77(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method77(args);
}
static int /*long*/ callback78(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method78(args);
}
static int /*long*/ callback79(int /*long*/[] callbackArgs) {
	// find the object on which this call was invoked
	int /*long*/ address = callbackArgs[0];
	Object object = ObjectMap.get(new LONG(address));
	if (object == null) return COM.E_FAIL;
	int /*long*/[] args = new int /*long*/[callbackArgs.length - 1];
	System.arraycopy(callbackArgs, 1, args, 0, args.length);
	return ((COMObject) object).method79(args);
}
public void dispose() {
	// free the memory for this reference
	int /*long*/[] pVtable = new int /*long*/[1];
	OS.MoveMemory(pVtable, ppVtable, OS.PTR_SIZEOF);
	OS.GlobalFree(pVtable[0]);
	OS.GlobalFree(ppVtable);

	// remove this ppVtable from the list
	ObjectMap.remove(new LONG(ppVtable));

	ppVtable = 0;
}
public int /*long*/ getAddress () {
	return ppVtable;
}
public int /*long*/ method0(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method1(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method2(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method3(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method4(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method5(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method6(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method7(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method8(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method9(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method10(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method11(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method12(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method13(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method14(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method15(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method16(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method17(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method18(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method19(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method20(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method21(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method22(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method23(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method24(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method25(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method26(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method27(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method28(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method29(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method30(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method31(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method32(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method33(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method34(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method35(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method36(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method37(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method38(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method39(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method40(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method41(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method42(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method43(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method44(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method45(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method46(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method47(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method48(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method49(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method50(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method51(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method52(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method53(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method54(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method55(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method56(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method57(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method58(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method59(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method60(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method61(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method62(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method63(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method64(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method65(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method66(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method67(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method68(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method69(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method70(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method71(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method72(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method73(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method74(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method75(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method76(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method77(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method78(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}
public int /*long*/ method79(int /*long*/[] args) {
	return COM.E_NOTIMPL;
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy