PDA

View Full Version : HMEMCPY on WinNT


TheWizard
05-03-2001, 11:13 AM
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
05-04-2001, 10:55 PM
hi,
hmemcpy don't work on NT/2000. Try to use bpx memcpy.

Regards

KaKTuZ / TMG
05-06-2001, 12:02 PM
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