📄 idataobject.java
字号:
/******************************************************************************* * 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;public class IDataObject extends IUnknown {public IDataObject(int address) { super(address);}public int EnumFormatEtc(int dwDirection, int[] ppenumFormatetc) { return COM.VtblCall(8, address, dwDirection, ppenumFormatetc);}public int GetData(FORMATETC pFormatetc, STGMEDIUM pmedium) { //Called by a data consumer to obtain data from a source data object. //The GetData method renders the data described in the specified FORMATETC //structure and transfers it through the specified STGMEDIUM structure. //The caller then assumes responsibility for releasing the STGMEDIUM structure. return COM.VtblCall(3, address, pFormatetc, pmedium);}public int GetDataHere(FORMATETC pFormatetc, STGMEDIUM pmedium) { //Called by a data consumer to obtain data from a source data object. //This method differs from the GetData method in that the caller must //allocate and free the specified storage medium. return COM.VtblCall(4, address, pFormatetc, pmedium);}public int QueryGetData(FORMATETC pFormatetc) { return COM.VtblCall(5, address, pFormatetc);}public int SetData( FORMATETC pFormatetc, // Pointer to the FORMATETC structure STGMEDIUM pmedium, // Pointer to STGMEDIUM structure boolean fRelease // Indicates which object owns the storage medium after the call is completed ){ return COM.VtblCall(7, address, pFormatetc, pmedium, fRelease);}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -