@@ -9,17 +9,33 @@ * the packaging of this file. */ #import +/* + * Headers for UNIX systems + */ +#ifndef _WIN32 #import #import #import +#else +#endif #import "OFObject.h" #import "OFStream.h" +/* + * Headers for Win32 + * + * These must be imported after objc/Object and thus OFObject! + */ +#ifdef _WIN32 +#import +#import +#endif + /** * The OFTCPSocket class provides functions to create and use sockets. */ @interface OFTCPSocket: OFObject {