Skip to content

Commit

Permalink
Add Mile.Xaml.Interop.IInitializeWithWindow (#25)
Browse files Browse the repository at this point in the history
Add Mile.Xaml.Interop.IInitializeWithWindow
  • Loading branch information
Gaoyifei1011 authored Mar 13, 2024
1 parent 98e62a4 commit aa034b5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Mile.Xaml.Managed/Interop/IInitializeWithWindow.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* PROJECT: Mouri Internal Library Essentials
* FILE: IInitializeWithWindow.cs
* PURPOSE: Definition for Mile.Xaml.Interop.IInitializeWithWindow
*
* LICENSE: The MIT License
*
* MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com)
*/

using System;
using System.Runtime.InteropServices;

namespace Mile.Xaml.Interop
{
[ComImport]
[Guid("3E68D4BD-7135-4D10-8018-9FB6D9F33FA1")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IInitializeWithWindow
{
void Initialize(IntPtr hwnd);
}
}

0 comments on commit aa034b5

Please sign in to comment.