- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
PVOID ZDbgDoc::getVaByName(PCSTR name)
{
PLIST_ENTRY head = &_dllListHead, entry = head;
while ((entry = entry->Flink) != head)
{
ZDll* pDll = static_cast<ZDll*>(entry);
if (PWSTR ImageName = pDll->_ImageName)
{
PCSTR sz = name;
__loop:
int c = tolower(*sz++);
if (!c || c != towlower(*ImageName++))
{
continue;
}
if (c != '.')
{
goto __loop;
}
pDll->Parse(this);
return pDll->getVaByName(sz, this);
}
}
return 0;
}
guest 29.11.2014 08:36 # −1
синод{э}
Rnj yt gjyzk qevjhf - njn thd'q
tirinox 29.11.2014 13:00 # −1
Анонимус 30.11.2014 21:22 # 0
от синода к сенату
как четыре строки