|
Harbour_files_to_be_modified
Instead of modifying a bunch of Harbour files that use Win32 API functions that are no longer present in WinRT, we are going to #include <win32.h> from windows.h itself, so there is no need to modify the Harbour files: At the bottom of C:\Program Files\Windows Kits\8.0\Include\um\windows.h add: #endif /* _WINDOWS_ */ #include <win32.h> win32.h is available from here: http://code.google.com/p/fivewinrt/downloads/detail?name=win32.h | |