I'm trying to debug into a C dll that is invoked on a Windows Mobile device using CeRapiInvoke() (Technically RAPI.Invoke() from OpenNETCF) from a Windows box. I'm very familiar with attaching to a process that is already running to debug a loaded dll (I've done it many time with Windows Mobile services) but I can't seem to figure out what process is actually running the dll. Even when running the Remote Process Viewer I don't see any new processes pop up, so it must be something that is already running... Any ideas as to which process to attach to in order to debug into the dll when invoked?

Edit: After trying to attach to several different processes I found that it was "rapiclnt.exd" that did the trick.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

rapiclnt.exe is the process which loads the RAPI dlls. Read this for more on debugging RAPI dlls.

http://knowledgepointer.wordpress.com/2008/11/08/debugging-rapi-dlls/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.