view dwt/internal/mozilla.old/nsIAppShell.d @ 288:4ee8c4237614

old branches... commit by mistake
author John Reimer<terminal.node@gmail.com>
date Tue, 05 Aug 2008 18:00:50 -0700
parents
children
line wrap: on
line source

module dwt.internal.mozilla.nsIAppShell;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;
import dwt.internal.mozilla.nsIEventQueue;

const char[] NS_IAPPSHELL_IID_STR = "a0757c31-eeac-11d1-9ec1-00aa002fb821";

const nsIID NS_IAPPSHELL_IID= 
  {0xa0757c31, 0xeeac, 0x11d1, 
    [ 0x9e, 0xc1, 0x00, 0xaa, 0x00, 0x2f, 0xb8, 0x21 ]};

extern(System)

interface nsIAppShell : nsISupports {
  static const char[] IID_STR = NS_IAPPSHELL_IID_STR;
  static const nsIID IID = NS_IAPPSHELL_IID;

  nsresult Create(int *argc, char **argv);
  nsresult Run();
  nsresult Spinup();
  nsresult Spindown();
  nsresult ListenToEventQueue(nsIEventQueue * aQueue, PRBool aListen);
  nsresult GetNativeEvent(PRBool * aRealEvent, void * * aEvent);
  nsresult DispatchNativeEvent(PRBool aRealEvent, void * aEvent);
  nsresult Exit();
}