I am working to port a QT project with some win32 API to Linux , In linux I desided to to use wine
please see .. http://www.winehq.com my problem is , the path to include files is " /wine/windows/windows.h " as you are aware windows.h serves as include file to other headers.

When I compile I get errors that data types and functions not found this is because in all header files include directive only has there names like in windows.h reference <winbase.h> and not

include <wine/windows/winbase.h>

please help me fix this problem