File: Windows\Win32\PInvoke.LoadLibrary.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\src\System.Windows.Forms.Primitives.csproj (System.Windows.Forms.Primitives)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Runtime.InteropServices;
using Windows.Win32.System.LibraryLoader;
 
namespace Windows.Win32;
 
internal static partial class PInvoke
{
    public static HINSTANCE LoadComctl32(string startupPath)
    {
        // NOTE: we don't look for the loaded module!
 
        if (!string.IsNullOrWhiteSpace(startupPath))
        {
            string customPath = Path.Join(startupPath, Libraries.Comctl32);
            Debug.Assert(Path.IsPathFullyQualified(customPath));
 
            if (Path.IsPathFullyQualified(customPath))
            {
                // OS will validate the path for us
                HINSTANCE result = LoadLibraryEx(customPath, 0);
                if (!result.IsNull)
                {
                    return result;
                }
            }
        }
 
        // Load the system default
        return LoadLibraryFromSystemPathIfAvailable(Libraries.Comctl32);
    }
 
    /// <summary>
    /// Loads the requested <paramref name="libraryName"/> from the default system path.
    /// If the module is already loaded, return the handle to it.
    /// </summary>
    /// <param name="libraryName">The assembly name to load.</param>
    /// <returns>A handle to the loaded module, if successful; <see cref="IntPtr.Zero"/> otherwise.</returns>
    public static HINSTANCE LoadLibraryFromSystemPathIfAvailable(string libraryName)
    {
        if (GetModuleHandle(Libraries.Kernel32).IsNull)
        {
            return HINSTANCE.Null;
        }
 
        // LOAD_LIBRARY_SEARCH_SYSTEM32 was introduced in KB2533623. Check for its presence
        // to preserve compat with Windows 7 SP1 without this patch.
        HINSTANCE result = LoadLibraryEx(libraryName, LOAD_LIBRARY_FLAGS.LOAD_LIBRARY_SEARCH_SYSTEM32);
        if (!result.IsNull)
        {
            return result;
        }
 
        // Load without this flag.
        if (Marshal.GetLastWin32Error() != (int)WIN32_ERROR.ERROR_INVALID_PARAMETER)
        {
            return HINSTANCE.Null;
        }
 
        return LoadLibraryEx(libraryName, 0);
    }
}