I have a program written using MFC to communicate with a device over the Ethernet. I need to rewrite it and convert it to Qt.
The MFC program uses Win API functions like CreateFile, ReadFile (to get network packet) and DeviceIOControl (to talk to the protocol used to facilitate communication)
Can I use these functions - CreateFile, ReadFile and DeviceIOControl in my Qt code directly if I include Windows.h ?
How about about Win API functions used for concurrency, like WaitForSingleObject and Mutex? What part of Win API is/is not available in Qt?
Is there a standard mechanism for converting MFC code to Qt?