v1.2
This commit is contained in:
24
FSI.BT.Tools/Global/DllImport/FindExecuteable.cs
Normal file
24
FSI.BT.Tools/Global/DllImport/FindExecuteable.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
// <copyright file="FindExecuteable.cs" company="PlaceholderCompany">
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace FSI.BT.Tools.Global.DllImports
|
||||
{
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
/// <summary>
|
||||
/// wraps the methodcalls to native windows dll's.
|
||||
/// </summary>
|
||||
public static partial class NativeMethods
|
||||
{
|
||||
public static void Shell32FindExecutable(string lpFile, string lpDirectory, [Out] StringBuilder lpResult)
|
||||
{
|
||||
_ = FindExecutable(lpFile, lpDirectory, lpResult);
|
||||
}
|
||||
|
||||
[DllImport("shell32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
|
||||
[DefaultDllImportSearchPaths(DllImportSearchPath.UserDirectories)]
|
||||
private static extern int FindExecutable(string lpFile, string lpDirectory, [Out] StringBuilder lpResult);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user