用 LoadLibraryExW 函数测试加载 dll (CSharp、Windows)
效果如下:
$ llbtest "E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64"
LoadLibraryExW PATH: E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64
E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64\concrt140.dll......[OK] ......Free: [OK]
E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64\cvextern.dll......[OK] ......Free: [OK]
E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64\msvcp140.dll......[OK] ......Free: [OK]
E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64\opencv_ffmpeg330_64.dll......[OK] ......Free: [OK]
E:\Developer\emgucv-windesktop 3.3.0.2824\libs\x64\vcruntime140.dll......[OK] ......Free: [OK]
-- Completed --
llbtest.cs 源代码:
用csc llbtest.cs编译即可
using System;
using System.ComponentModel;
using System.IO;
using System.Runtime.InteropServices; class Program
{
static void Main(string[] args)
{
if (args.Length == || args.Length > )
{
ShowHelp();
return;
}
var path = args[];
if (!Directory.Exists(path))
{
ShowHelp();
return;
} var files = Directory.EnumerateFiles(path, "*.dll");
Console.WriteLine($"LoadLibraryExW PATH: {path}");
foreach (var file in files)
{
Console.Write(file);
const int loadLibrarySearchDllLoadDir = 0x00000100;
const int loadLibrarySearchDefaultDirs = 0x00001000;
//const int loadLibrarySearchUserDirs = 0x00000400;
IntPtr handler = NativeMethods.LoadLibraryExW(file, IntPtr.Zero, loadLibrarySearchDllLoadDir | loadLibrarySearchDefaultDirs);
//IntPtr handler = LoadLibraryEx(dllname, IntPtr.Zero, loadLibrarySearchUserDirs);
if (handler == IntPtr.Zero)
{
var error = Marshal.GetLastWin32Error();
var ex = new Win32Exception(error);
Console.WriteLine($"......[ERROR] {ex.NativeErrorCode}: {ex.Message}");
}
else
{
Console.Write($"......[OK] {handler}");
var freeLibrary = NativeMethods.FreeLibrary(handler);
Console.WriteLine($"......Free: {(freeLibrary ? "[OK]" : "[ERROR]")}");
}
}
Console.WriteLine("-- Completed --");
if(args.Length == && args[] == "...")
{
Console.Write("Press any key to exit...");
Console.ReadKey(true);
Console.WriteLine();
}
} private static void ShowHelp()
{
var x = AppDomain.CurrentDomain.FriendlyName;
Console.WriteLine($"Usage:\n\t{x} <path> [...]\n\tpath\tThe directory path that includes *.dll files\n\t...\tPause me when completed.");
}
} [StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
public struct HINSTANCE__
{ /// int
public int unused;
} public partial class NativeMethods
{ /// Return Type: HMODULE->HINSTANCE->HINSTANCE__*
///lpLibFileName: LPCWSTR->WCHAR*
///hFile: HANDLE->void*
///dwFlags: DWORD->unsigned int
[DllImport("kernel32.dll", EntryPoint = "LoadLibraryExW", SetLastError = true)]
public static extern System.IntPtr LoadLibraryExW([In()] [MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)] string lpLibFileName, System.IntPtr hFile, uint dwFlags); /// Return Type: BOOL->int
///hLibModule: HMODULE->HINSTANCE->HINSTANCE__*
[DllImport("kernel32.dll", EntryPoint = "FreeLibrary")]
[return: MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]
public static extern bool FreeLibrary([In()] System.IntPtr hLibModule);
}
用 LoadLibraryExW 函数测试加载 dll (CSharp、Windows)的更多相关文章
- 在内存中加载DLL
有个需求是把一个DLL作为数据打包到EXE中,运行的时候动态加载.但要求不是释放出来生成DLL文件加载. 花了一天时间做出来.效果还可以. 不过由于是直接分配内存加载DLL的.有一些小缺陷.例如遍历进 ...
- 动态链接库知识点总结之三(如何以显示的方式加载DLL)
总结一下如何显示加载方式加载DLL, 首先,我们新建一个win32项目,选择dll,空项目,再添加一个源文件,一个模块定义文件(.def),具体如下图.(详细方法已经在前两篇文章中讲述,如有不懂,打开 ...
- c#动态加载dll文件
1.在写一个记录日志到文件中的类库(生成dll文件copy到一个目录中去,然后在主函数的appconfig中去配置. using System; using System.Collections.Ge ...
- 内存加载DLL
1.前言 目前很多敏感和重要的DLL(Dynamic-link library) 都没有提供静态版本供编译器进行静态连接(.lib文件),即使提供了静态版本也因为兼容性问题导致无法使用,而只提供DLL ...
- 无法加载 DLL“SQLite.Interop.dll”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)
SQLite部署-无法加载 DLL“SQLite.Interop.dll”: 找不到指定的模块 近期刚使用SQLite,主要引用的是System.Data.SQLite.dll这个dll,在部署到测试 ...
- 加载dll过程中assembly失败
错误现象: 进行插件读取时出现错误:“尝试从一个网络位置加载程序集,在早期版本的 .NET Framework 中,这会导致对该程序集进行沙盒处理.此发行版的 .NET Framework 默认情况下 ...
- SQLite部署-无法加载 DLL“SQLite.Interop.dll”: 找不到指定的模块
近期刚使用SQLite,主要引用的是System.Data.SQLite.dll这个dll,在部署到测试环境时报无法加载 DLL“SQLite.Interop.dll”: 找不到指定的模块. (异常来 ...
- C++动态加载DLL调用方法
一.构建DLL路径 char szTmp[_MAX_PATH]; char* szPath = getcwd(szTmp, _MAX_PATH);//获取当前工作目录 //构建dll路径 strc ...
- 关于Windows平台下应用程序加载DLL模块的问题.
本文将讨论以下问题: (1)Windows可执行程序会从哪些目录下加载DLL. (2)如何将可执行使用的DLL放置到统一的目录下,而不是与EXE同一目录. (3)可执行程序加载了不该加载的DLL. ( ...
随机推荐
- Pycharm在创建py文件时,自动添加文件头注释
依次File -> Settings -> Editor -> File and Code Templates -> Python Script 添加以下代码: # -*- ...
- 在Centos上打Preempt-rt实时补丁
1.系统centos6.5,内核2.6.31.6,补丁patch-2.6.31.6-rt19.bz2,以下方式获得: wget https://www.kernel.org/pub/linux/ker ...
- mysql 关于join的总结
本文地址:http://www.cnblogs.com/qiaoyihang/p/6401280.html mysql不支持Full join,不过可以通过UNION 关键字来合并 LEFT JOIN ...
- django重写用户模型
重写一个UserProfile继承自带的AbstractUser # -*- coding: utf-8 -*- from __future__ import unicode_literals fro ...
- 使用哈工大LTP进行句法分析
作者注:本教程旨在对哈工大LTP在github上的LTP4J(LTP的java版本)教程的补充,请结合以下参考网站一起食用. 参考网站: [1]哈工大语言技术平台云官网--LTP使用文档 http:/ ...
- django基础2: 路由配置系统,URLconf的正则字符串参数,命名空间模式,View(视图),Request对象,Response对象,JsonResponse对象,Template模板系统
Django基础二 request request这个参数1. 封装了所有跟请求相关的数据,是一个对象 2. 目前我们学过1. request.method GET,POST ...2. reques ...
- Java源码解释之Integer.bitCount
Java中的Integer.bitCount(i)的返回值是i的二进制表示中1的个数.源码如下: public static int bitCount(int i) { // HD, Figure 5 ...
- List集合的ForEach扩展
public static void ForEach<T>(this IEnumerable<T> enumerableSource, Action<T&g ...
- LeetCode:逆波兰表达式求值【150】
LeetCode:逆波兰表达式求值[150] 题目描述 根据逆波兰表示法,求表达式的值. 有效的运算符包括 +, -, *, / .每个运算对象可以是整数,也可以是另一个逆波兰表达式. 说明: 整数除 ...
- sortable实现拖拽功能
使用sortable这个强力插件就很容易实现拖拽功能,它是目前比较牛逼的拖拽插件,无需jquery,就可以全面支持pc和移动,参考以下github文档就有很详细的说明,也给了很多 demo,插件就用我 ...