te
This commit is contained in:
parent
01151e679b
commit
57b2f0400e
265 changed files with 22828 additions and 6 deletions
31
Unused/Decal.Interop.Core/IDecalFileSurrogate.cs
Normal file
31
Unused/Decal.Interop.Core/IDecalFileSurrogate.cs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Security;
|
||||
|
||||
namespace Decal.Interop.Core;
|
||||
|
||||
[ComImport]
|
||||
[InterfaceType(1)]
|
||||
[SuppressUnmanagedCodeSecurity]
|
||||
[Guid("E182005F-6A67-48B5-A50F-464340105330")]
|
||||
public interface IDecalFileSurrogate
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||||
void Register([MarshalAs(UnmanagedType.BStr)] string Filename);
|
||||
|
||||
[DispId(1610678273)]
|
||||
string Extension
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||||
[return: MarshalAs(UnmanagedType.BStr)]
|
||||
get;
|
||||
}
|
||||
|
||||
[DispId(1610678274)]
|
||||
string Description
|
||||
{
|
||||
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
|
||||
[return: MarshalAs(UnmanagedType.BStr)]
|
||||
get;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue