mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-12 02:09:05 +00:00
11 lines
239 B
C#
11 lines
239 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace QuickLook.NativeMethods
|
|
{
|
|
internal class Kernel32
|
|
{
|
|
[DllImport("kernel32.dll")]
|
|
internal static extern IntPtr LoadLibrary(string lpFileName);
|
|
}
|
|
} |