Log in

View Full Version : HMEMCPY on WinNT


TheWizard
May 3rd, 2001, 10:13
Hi, I'm trying to do a BPX HMEMPCY in SoftIce/WinNT and it shows "Symbol not defined".
Do I need a special EXP= line in winice.dat or it's just that HMEMCPY is not supported in WinNT ?

Thanxs

stealthFIGHTER
May 4th, 2001, 21:55
hi,
hmemcpy don't work on NT/2000. Try to use bpx memcpy.

Regards

KaKTuZ / TMG
May 6th, 2001, 11:02
Yes, hmemcpy is a Win9x only API. On a NT/2k system, you should use breakpoint on WM_GETTEXT message with a handle to your edit control. You can get the handle to the control, with the help of numerous "Spy"-like utilities (e.g. Spy++). You then set a breakpoint on window message in SIce like this:
"bmsg handle_here WM_GETTEXT" (without quotes, of course ).

HTH