vote up 1 vote down star

Using C winapi, how can you capture receieved data from a commport that is open exclusively by another program.

I know there are programs that do this, but I want to code my own monitoring software for a specific purpose and was wondering how is it done?

flag

2 Answers

vote up -1 vote down

There is a nice article that describes how to do it by enumerating registry keys here: http://www.codeproject.com/system/listports.asp

I have found this approach to work well on XP and Vista.

link|flag
This just lists ports, it does nothing with the data... – Remko Nov 11 at 12:31
vote up 1 vote down

You can do this using API hooking see here: http://www.codeproject.com/KB/system/hooksys.aspx for details. Basically you could load the target process, inject some code into the target process to hook the API that you're interested in and then use an IPC mechanism to transfer the data from your hooks to your analysis program.

This is how my program that can control the values returned by GetTickCount() in another program works (see here http://www.lenholgate.com/archives/000647.html)

link|flag

Your Answer

Get an OpenID
or

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