码迷,mamicode.com
首页 > 编程语言 > 详细

c++代码收集

时间:2015-07-24 19:03:04      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1.There‘s an undocumented hack that works on any version of 32-bit and 64-bit Windows that I‘ve seen. 
The HMODULE of a DLL is the same value as the module‘s base address:
static HMODULE GetThisDllHandle(){
  MEMORY_BASIC_INFORMATION info;
  size_t len = VirtualQueryEx(GetCurrentProcess(), (void*)GetThisDllHandle, &info, sizeof(info));
  assert(len == sizeof(info));
  return len ? (HMODULE)info.AllocationBase : NULL;}


c++代码收集

标签:

原文地址:http://my.oschina.net/yangxb0202/blog/483440

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!