psyCK0
January 30th, 2003, 02:31
Is there any way to somehow export function names etc from IDA and get them into OllyDbg? As it is now i get this in IDA:
<pre>
.text:0041C030 push esi ; int
.text:0041C031 push eax ; int
.text:0041C032 call __isctype
</pre>
and this in olly:
<pre>
0041C030 |. 56 PUSH ESI
0041C031 |. 50 PUSH EAX
0041C032 |. E8 343B0000 CALL XXX.0041FB6B
</pre>
I'd like the call in Olly to also be named __isctype
<pre>
.text:0041C030 push esi ; int
.text:0041C031 push eax ; int
.text:0041C032 call __isctype
</pre>
and this in olly:
<pre>
0041C030 |. 56 PUSH ESI
0041C031 |. 50 PUSH EAX
0041C032 |. E8 343B0000 CALL XXX.0041FB6B
</pre>
I'd like the call in Olly to also be named __isctype
