mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00:00
12 lines
359 B
C#
12 lines
359 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace QuickLook.Plugin.IPreviewHandlers
|
|
{
|
|
[ComImport]
|
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|
[Guid("b7d14566-0509-4cce-a71f-0a554233bd9b")]
|
|
internal interface IInitializeWithFile
|
|
{
|
|
void Initialize([MarshalAs(UnmanagedType.LPWStr)] string pszFilePath, uint grfMode);
|
|
}
|
|
} |