Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ee5594b3e4cf9ed9cca5305f34668ee289291635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.swt.internal.ole.win32;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class OLECMDTEXT {
	public int cmdtextf;    
	public int cwActual;    
	public int cwBuf;    
	public short rgwz;

	// Note: this is a variable sized struct.  The last field rgwz can vary in size.
	// Currently we do not use this field and do not support accessing anything more
	// than the first char in the field.
}

Back to the top