コード例 #1
0
ファイル: Natives.cs プロジェクト: yangshuangfu/PEzor
 public static IntPtr LoadLibrary(string name)
 {
     return(CustomLoadLibrary.GetDllAddress(name, true));
 }
コード例 #2
0
ファイル: Natives.cs プロジェクト: yangshuangfu/PEzor
 public static IntPtr GetProcAddress(IntPtr hModule, string procName)
 {
     return(CustomLoadLibrary.GetExportAddress(hModule, procName));
 }