Files
Xune/UIX.RenderApi.Skia/Microsoft/Iris/Render/Protocols/Splash/Desktop/IFormWindowCallback.cs
T

47 lines
1.5 KiB
C#
Raw Normal View History

2021-07-11 22:59:29 -05:00
// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.Render.Protocols.Splash.Desktop.IFormWindowCallback
// Assembly: UIX.RenderApi, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: D47658B8-A8EA-43D6-8837-ECE823BFFFC1
// Assembly location: C:\Program Files\Zune\UIX.RenderApi.dll
using Microsoft.Iris.Render.Protocol;
using System;
namespace Microsoft.Iris.Render.Protocols.Splash.Desktop
{
2021-07-11 23:04:40 -05:00
internal interface IFormWindowCallback
{
void OnRendererSuspended(RENDERHANDLE target, bool fEnabled);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnNativeScreensave(RENDERHANDLE target, bool fStartScreensave);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnShellShutdownHook(RENDERHANDLE target, ushort uIdMsg);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnSetFocus(RENDERHANDLE target, bool focused, HWND hwndFocusChange);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnDropComplete(RENDERHANDLE target);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnPartialDrop(RENDERHANDLE target, string file);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
unsafe void OnStateChange(RENDERHANDLE target, Message* stateInfo);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnTerminalSessionChange(RENDERHANDLE target, IntPtr wParam, IntPtr lParam);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnPrivateSysCommand(RENDERHANDLE target, IntPtr wParam, IntPtr lParam);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnMouseIdle(RENDERHANDLE target, bool fNewIdle);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnCloseRequested(RENDERHANDLE target);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnLoad(RENDERHANDLE target);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnWindowDestroyed(
RENDERHANDLE target,
uint nFinalShow,
Rectangle rcLastPosition,
Point ptFinalMaxPosition);
2021-07-11 22:59:29 -05:00
2021-07-11 23:04:40 -05:00
void OnWindowCreated(RENDERHANDLE target, HWND m_hWnd);
}
2021-07-11 22:59:29 -05:00
}