亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? comobject.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/******************************************************************************* * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.swt.internal.ole.win32;import java.util.Hashtable;import org.eclipse.swt.internal.*;import org.eclipse.swt.internal.win32.*;public class COMObject {	private int 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[] callbackAddresses = new int[argCounts.length];	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); //$NON-NLS-1$		}		callbackAddresses[i] = Callbacks[i][argCounts[i]].getAddress();	}	int pVtable = OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, 4 * argCounts.length);	COM.MoveMemory(pVtable, callbackAddresses, 4 * argCounts.length);	ppVtable = OS.GlobalAlloc(COM.GMEM_FIXED | COM.GMEM_ZEROINIT, 4);	COM.MoveMemory(ppVtable, new int[] {pVtable}, 4);	ObjectMap.put(new Integer(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 callback0(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method0(args);}static int callback1(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method1(args);}static int callback2(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method2(args);}static int callback3(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method3(args);}static int callback4(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method4(args);}static int callback5(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method5(args);}static int callback6(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method6(args);}static int callback7(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method7(args);}static int callback8(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method8(args);}static int callback9(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method9(args);}static int callback10(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method10(args);}static int callback11(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method11(args);}static int callback12(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method12(args);}static int callback13(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method13(args);}static int callback14(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method14(args);}static int callback15(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method15(args);}static int callback16(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method16(args);}static int callback17(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method17(args);}static int callback18(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method18(args);}static int callback19(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method19(args);}static int callback20(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method20(args);}static int callback21(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method21(args);}static int callback22(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method22(args);}static int callback23(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method23(args);}static int callback24(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method24(args);}static int callback25(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method25(args);}static int callback26(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method26(args);}static int callback27(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method27(args);}static int callback28(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method28(args);}static int callback29(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method29(args);}static int callback30(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method30(args);}static int callback31(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];	Object object = ObjectMap.get(new Integer(address));	if (object == null) return COM.E_FAIL;	int[] args = new int[callbackArgs.length - 1];	System.arraycopy(callbackArgs, 1, args, 0, args.length);	return ((COMObject) object).method31(args);}static int callback32(int[] callbackArgs) {	// find the object on which this call was invoked	int address = callbackArgs[0];

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人成网站精品片在线观看| 91精品综合久久久久久| 国产精品久久久久精k8| 成人免费福利片| 亚洲欧美另类综合偷拍| 欧美亚洲一区三区| 日韩成人免费看| 26uuu精品一区二区| 成人一区二区三区| 一区二区三区日韩在线观看| 宅男在线国产精品| 国产毛片精品一区| 日韩毛片高清在线播放| 欧美视频在线一区| 国产在线播精品第三| 国产精品久久三| 欧美亚洲国产一区在线观看网站| 青青草一区二区三区| 日本一区二区视频在线观看| 欧美在线观看一区二区| 日韩专区一卡二卡| 国产亚洲综合性久久久影院| 91网站黄www| 激情五月婷婷综合网| 亚洲成人午夜电影| 日韩免费看网站| 色哟哟欧美精品| 精品一区二区三区蜜桃| 日韩理论电影院| 欧美xxxx在线观看| 色综合天天综合色综合av| 日本亚洲一区二区| 亚洲欧美一区二区三区孕妇| 欧美www视频| 91官网在线免费观看| 激情综合五月婷婷| 亚洲成人免费av| 中文字幕成人网| 日韩美女一区二区三区四区| av不卡在线观看| 九九国产精品视频| 亚洲国产精品一区二区尤物区| 久久久久97国产精华液好用吗| 欧美午夜电影一区| 成人高清视频在线| 激情伊人五月天久久综合| 亚洲第一二三四区| 中文字幕一区二区三区四区| 日韩免费在线观看| 欧美日韩黄色影视| 91极品视觉盛宴| 成人伦理片在线| 国产伦精品一区二区三区在线观看| 夜夜精品视频一区二区| 国产精品久久久久桃色tv| 精品国产乱码久久久久久免费 | 精品一区二区三区免费播放| 一区二区三区欧美日| 国产精品毛片高清在线完整版| 精品国产伦一区二区三区观看方式 | 日韩国产欧美视频| 亚洲欧美日韩在线| 国产精品视频一二| 国产婷婷精品av在线| 欧美电影精品一区二区| 欧美一区国产二区| 欧美精品aⅴ在线视频| 欧美在线观看禁18| 在线观看视频91| 日本精品视频一区二区三区| 99久久精品免费看国产| 成人app网站| 成人av免费观看| 成av人片一区二区| youjizz久久| 99国产一区二区三精品乱码| 国产.欧美.日韩| 成熟亚洲日本毛茸茸凸凹| 国产激情视频一区二区在线观看| 狠狠色丁香久久婷婷综| 精品午夜一区二区三区在线观看| 视频在线观看91| 免费一级片91| 韩国v欧美v日本v亚洲v| 国产高清在线观看免费不卡| 国产成人av电影在线观看| 成人av在线资源| 色综合久久中文字幕综合网| 在线观看av一区| 欧美日韩精品欧美日韩精品| 国产精品素人视频| 国产欧美精品一区二区色综合 | 国产一区91精品张津瑜| 国产成人自拍在线| 9i看片成人免费高清| 在线观看免费视频综合| 538prom精品视频线放| 欧美精品一区二区三区在线播放| 久久夜色精品一区| 亚洲视频电影在线| 偷窥少妇高潮呻吟av久久免费| 蜜臀av一区二区| 丁香婷婷综合色啪| 91免费在线看| 欧美精品在线一区二区三区| 亚洲精品在线观看网站| 国产精品国产三级国产aⅴ中文| 亚洲精品国产无天堂网2021| 男男视频亚洲欧美| 风间由美中文字幕在线看视频国产欧美 | 成人性视频免费网站| 色婷婷综合久久| 日韩欧美国产一区二区三区| 国产精品久久久久久久久免费樱桃 | 激情丁香综合五月| 色88888久久久久久影院野外 | 91高清在线观看| 欧美大片在线观看一区二区| 中文字幕一区二区三区不卡| 日本欧美韩国一区三区| 成人精品鲁一区一区二区| 欧美三级视频在线观看| 日本一区二区三区免费乱视频 | 欧美日韩高清影院| 国产欧美日韩精品在线| 日韩精品1区2区3区| 国产成人av福利| 欧美日本乱大交xxxxx| 久久看人人爽人人| 日韩高清不卡一区二区三区| 岛国av在线一区| 日韩欧美一二区| 亚洲小说欧美激情另类| 福利一区福利二区| 精品美女在线观看| 亚洲图片欧美色图| 91在线小视频| 国产亚洲欧美色| 久久成人av少妇免费| 在线国产电影不卡| 亚洲欧美日韩中文播放 | 国产一区二区三区精品视频 | 777午夜精品免费视频| 国产精品二三区| 国产黄人亚洲片| 久久尤物电影视频在线观看| 午夜欧美在线一二页| 色综合天天性综合| 国产精品精品国产色婷婷| 欧美日韩免费高清一区色橹橹| 国产亚洲福利社区一区| 麻豆精品在线看| 欧美日韩国产片| 亚洲最大色网站| av成人老司机| 国产精品日产欧美久久久久| 国产一区二区三区视频在线播放| 日韩女优毛片在线| 免费欧美日韩国产三级电影| 777午夜精品免费视频| 亚洲444eee在线观看| 精品视频免费看| 五月婷婷色综合| 欧美精品免费视频| 日本女优在线视频一区二区| 欧美日本在线看| 丝袜亚洲精品中文字幕一区| 欧美日韩亚州综合| 日韩黄色小视频| 日韩精品一区二区三区在线| 青青国产91久久久久久| 欧美成人激情免费网| 毛片基地黄久久久久久天堂| 欧美大黄免费观看| 极品瑜伽女神91| 国产日韩欧美精品在线| 国产91在线看| 亚洲日本一区二区三区| 在线观看日韩高清av| 亚洲一区二区三区四区在线免费观看 | 日韩免费看的电影| 国产高清不卡一区| 中文在线一区二区| 色综合天天综合在线视频| 亚洲第一二三四区| 欧美草草影院在线视频| 国产精品性做久久久久久| 一区在线观看免费| 精品视频一区 二区 三区| 奇米精品一区二区三区四区| 精品美女在线播放| 波多野结衣一区二区三区| 玉足女爽爽91| 7799精品视频| 狠狠狠色丁香婷婷综合激情 | 久久午夜羞羞影院免费观看| 国产麻豆9l精品三级站| 亚洲精品videosex极品| 91精品国产综合久久久蜜臀图片| 国产一区二区三区不卡在线观看 |