ObjFW  Check-in [3798cbd7ce]

Overview
Comment:OFStreamObserver: Add missing include on Win32.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3798cbd7ce3d8014337b2becdacb13e9e25266dfe7c26c6335fb98e5a68b149a
User & Date: js on 2013-05-30 08:56:42
Other Links: manifest | tags
Context
2013-06-02
21:18
atomic.h: Remove a useless xor. check-in: 1c7175697e user: js tags: trunk
2013-05-30
08:56
OFStreamObserver: Add missing include on Win32. check-in: 3798cbd7ce user: js tags: trunk
2013-05-26
17:24
OFTCPSocket.h: Explicitly import objfw-defs.h. check-in: 49b741b30e user: js tags: trunk
Changes

Modified src/OFStreamObserver.m from [acce8334f0] to [765c53f8f8].

42
43
44
45
46
47
48




49
50
51
52
53
54
55
#endif
#ifdef HAVE_POLL_H
# import "OFStreamObserver_poll.h"
#endif
#if defined(HAVE_SYS_SELECT_H) || defined(_WIN32)
# import "OFStreamObserver_select.h"
#endif





#import "OFInitializationFailedException.h"
#import "OFOutOfRangeException.h"

#import "autorelease.h"
#import "macros.h"








>
>
>
>







42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#endif
#ifdef HAVE_POLL_H
# import "OFStreamObserver_poll.h"
#endif
#if defined(HAVE_SYS_SELECT_H) || defined(_WIN32)
# import "OFStreamObserver_select.h"
#endif

#ifdef _WIN32
# include <ws2tcpip.h>
#endif

#import "OFInitializationFailedException.h"
#import "OFOutOfRangeException.h"

#import "autorelease.h"
#import "macros.h"