Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created November 10, 2016 22:08
Show Gist options
  • Save NicoVermeir/88bc47f259e052a193fb9d1fe10f4e8b to your computer and use it in GitHub Desktop.
Save NicoVermeir/88bc47f259e052a193fb9d1fe10f4e8b to your computer and use it in GitHub Desktop.
using System;
using Windows.UI.Input;
namespace DialDebug
{
[System.Runtime.InteropServices.Guid("1B0535C9-57AD-45C1-9D79-AD5C34360513")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIInspectable)]
public interface IRadialControllerInterop
{
RadialController CreateForWindow(
IntPtr hwnd,
[System.Runtime.InteropServices.In]ref Guid riid);
}
[System.Runtime.InteropServices.Guid("787cdaac-3186-476d-87e4-b9374a7b9970")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIInspectable)]
public interface IRadialControllerConfigurationInterop
{
RadialControllerConfiguration GetForWindow(
IntPtr hwnd,
[System.Runtime.InteropServices.In]ref Guid riid);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment