📄 wellknownguids.java
字号:
/*
* WellKnownGUIDs.java -
*
* This file is part of the Jawin Project: http://jawinproject.sourceforge.net/
*
* Please consult the LICENSE file in the project root directory,
* or at the project site before using this software.
*/
/* $Id: WellKnownGUIDs.java,v 1.4 2004/07/02 18:43:26 arosii_moa Exp $ */
package org.jawin.constants;
import org.jawin.GUID;
/**
* Interface Identifiers for some well known interfaces.
*
* @version $Revision: 1.4 $
* @author Stuart Halloway, http://www.relevancellc.com/halloway/weblog/
*/
public class WellKnownGUIDs {
private WellKnownGUIDs() {
// private constructor to keep class from being instantiated.
}
/**
* GUID for the IUnknown interface.
*
* @see <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/htm/cmi_q2z_9dwu.asp">MSDN Platform SDK: COM IUnknown</a>
*/
public static final GUID IID_IUnknown = new GUID("{00000000-0000-0000-C000-000000000046}");
/**
* GUID for the IDispatch interface.
*
* @see <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/automat/htm/chap5_78v9.asp">MSDN Automation: IDispatch Interface</a>
*/
public static final GUID IID_IDispatch = new GUID("{00020400-0000-0000-C000-000000000046}");
/**
* GUID for the IEnumVariant interface.
*
* @see <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/automat/htm/chap5_6t2d.asp">MSDN Automation: IEnumVARIANT Interface</a>
*/
public static final GUID IID_IEnumVariant = new GUID("{00020404-0000-0000-C000-000000000046}");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -