Training
×

iwin32x

When an INtime application uses iwin32, a matching Windows application can use the iwin32 objects by the iwin32x API.
Just like iwin32 is an alternative to the INtime API, iwin32x is an alternative to NTX.
Although both Windows and iwin32x use HANDLEs, you should not mix them; for example, after:
  h = CreateMutex(NULL, FALSE, “mutex”); // the Windows function
Do not try this:
  RtWaitForSingleObject(h, INFINITE);  // the iwin32x function