add HModule accessor to InstanceDll

This commit is contained in:
zeromus 2017-04-17 22:42:12 -05:00
parent 42ab6b5df4
commit d7b0043379
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,8 @@ namespace BizHawk.Common
return GetProcAddress(_hModule, procName);
}
public IntPtr HModule { get { return _hModule; } }
IntPtr IImportResolver.Resolve(string entryPoint)
{
return GetProcAddress(entryPoint);