view org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/internal/mozilla/nsIInterfaceRequestor.d @ 54:70388b0e6dad

[swt lin] compiles
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 23:31:11 +0100
parents f713da8bc051
children
line wrap: on
line source

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

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_IINTERFACEREQUESTOR_IID_STR = "033a1470-8b2a-11d3-af88-00a024ffc08c";

const nsIID NS_IINTERFACEREQUESTOR_IID= 
  {0x033a1470, 0x8b2a, 0x11d3, 
    [ 0xaf, 0x88, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]};

interface nsIInterfaceRequestor : nsISupports {

  static const char[] IID_STR = NS_IINTERFACEREQUESTOR_IID_STR;
  static const nsIID IID = NS_IINTERFACEREQUESTOR_IID;

extern(System):
  nsresult GetInterface(in nsIID * uuid, void * *result);

}