view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/internal/mozilla/nsICancelable.d @ 25:f713da8bc051

Added SWT Linux GTK
author Frank Benoit <benoit@tionex.de>
date Fri, 20 Mar 2009 23:03:58 +0100
parents
children
line wrap: on
line source

module org.eclipse.swt.internal.mozilla.nsICancelable;

import java.lang.all;

import org.eclipse.swt.internal.mozilla.Common;
import org.eclipse.swt.internal.mozilla.nsID;
import org.eclipse.swt.internal.mozilla.nsISupports;

const char[] NS_ICANCELABLE_IID_STR = "d94ac0a0-bb18-46b8-844e-84159064b0bd";

const nsIID NS_ICANCELABLE_IID= 
  {0xd94ac0a0, 0xbb18, 0x46b8, 
    [ 0x84, 0x4e, 0x84, 0x15, 0x90, 0x64, 0xb0, 0xbd ]};

interface nsICancelable : nsISupports {

  static const char[] IID_STR = NS_ICANCELABLE_IID_STR;
  static const nsIID IID = NS_ICANCELABLE_IID;

extern(System):
  nsresult Cancel(nsresult aReason);
}