blob: f475dee40c38dd96c2fbea412835f800de225461 [file] [log] [blame]
package org.eclipse.swt.internal.win32;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
public class LRESULT {
public int value;
public static final LRESULT ONE = new LRESULT (1);
public static final LRESULT ZERO = new LRESULT (0);
public LRESULT (int value) {
this.value = value;
}
}