Hey guys, I'm new to wine and trying to debug. Could you plz tell me what is ret and retval in the following debug session> > 0019:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7e6c45aeThank You Karthik
22karthikreddy wrote:> Hey guys, > I'm new to wine and trying to debug. Could you plz tell me what is ret and retval in the following debug session > > Code: > 0019:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7e6c45ae > >"retval" is the return value from the function. "ret" is the return address (next instruction after 'call').