This commit is contained in:
rods%netscape.com 1999-02-21 20:52:04 +00:00
Родитель 97846d3f01
Коммит ff1ed6694d
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -27,9 +27,14 @@
class nsIWebShell;
class nsIWidget;
// Interface ID for nsIWebShellWindow
#define NS_IWEBSHELL_WINDOW_IID \
{ 0x28dce479, 0xbf73, 0x11d2, { 0x96, 0xc8, 0x0, 0x60, 0xb0, 0xfb, 0x99, 0x56}}
class nsIWebShellWindow : public nsISupports
{
public:
static const nsIID& IID() { static nsIID iid = NS_IWEBSHELL_WINDOW_IID; return iid; }
NS_IMETHOD Show(PRBool aShow) = 0;
NS_IMETHOD GetWebShell(nsIWebShell *& aWebShell) = 0;
@ -37,8 +42,5 @@ public:
};
// Interface ID for nsIWebShellWindow
#define NS_IWEBSHELL_WINDOW_IID \
{ 0x28dce479, 0xbf73, 0x11d2, { 0x96, 0xc8, 0x0, 0x60, 0xb0, 0xfb, 0x99, 0x56}}
#endif /* nsIWebShellWindow_h__ */