Win32 Compatibility

The INtime API (iwin32) is designed to be similar to Win32 for experienced Win32 programmers, but it was not possible to provide all INtime facilities within the Win32 API. As an example, creating a thread:
// in Win32:
HANDLE h;
DWORD id;
H = CreateThread(NULL, 8192, Start, &par, 0, &id);
 
// and in INtime:
RTHANDLE h;
h = CreateRtThread(150, Start, 8192, &par);
 
With the iwin32 API, an existing application can be recompiled to run on INtime. Validation obviously still needed.