Can Win32 message loops survive being ported to native linux?

Posted by Chris Cochran on Programmers See other posts from Programmers or by Chris Cochran
Published on 2012-10-17T00:21:57Z Indexed on 2012/10/17 5:24 UTC
Read the original article Hit count: 245

Filed under:
|
|

I would like to port a large Win32 DLL to native linux in C++. I don't think I can use Wine for a DLL like mine, because users of the DLL would then also have to be in Wine, and then they would all whine... As a Windows C++ programmer, I don't (yet) have any familiarity with the GUI front-end services in linux, but if it logically runs on anything like win32 message loops, fonts, bitmaps, invalidation regions, getmessage( ) calls and so forth, it should be a fairly straight forward remapping of my existing code.

So what am I looking at here, a remap or a rewrite? The path for such things must be well worn by now.

© Programmers or respective owner

Related posts about c++

Related posts about linux