/*-------------------------------------------------------------*/ /* the FILE type is necessary to write to a file. It's defined in stdio.h, but I do not want to include ".h" files in netwib. So, we define NETWIBFILE which has the same utility as FILE */ #define NETWIBFILE void /*-------------------------------------------------------------*/ /* the HANDLE type is necessary but exists only under Windows. So, we define NETWIBHANDLE which has the same utility as HANDLE */ #define NETWIBHANDLE void*