I'm new to .net and windows and are trying to figure out how to integrate legacy code into my C# project.
The guy owning the code said he only needs "a message pump" and "idle processing".
After some googling It sounds that at least MCF, Windows Forms and Win32 all have their own message pumps? Is this true?
My C# code is a console app which I understand does not have any message pump at all, thought those were just GUI things?
So, what do I need to do in my C# to make his old code work when he says he need a "message pump"???
Edit: The code I need to use have been used in a GUI. Now I need to use it in a server instead and got a bit terrified about the need for a GUI message pump, my code is pure C# with no GUI stuff in it at all. Just some number crunching and I/O.