mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Minor tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21520 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0de7dcbe08
commit
b04d24f664
2 changed files with 3 additions and 3 deletions
|
@ -4,6 +4,8 @@
|
|||
the additions library is built standalone on MacOS-X
|
||||
* Source/GNUmakefile: Don't build base subprojects when only building
|
||||
additions library!
|
||||
* Headers/Foundation/NSRunLoop.h: Tidy up enumerated type, simplifying
|
||||
mingw ifdefs
|
||||
|
||||
2005-07-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -110,13 +110,11 @@ GS_EXPORT NSString * const NSDefaultRunLoopMode;
|
|||
typedef enum {
|
||||
#ifdef __MINGW__
|
||||
ET_HANDLE,
|
||||
ET_RPORT /* Watch for message arriving on port. */
|
||||
#else
|
||||
ET_RDESC, /* Watch for descriptor becoming readable. */
|
||||
ET_WDESC, /* Watch for descriptor becoming writeable. */
|
||||
#endif
|
||||
ET_RPORT, /* Watch for message arriving on port. */
|
||||
/* For binary compatibility we have an extra ifdef... */
|
||||
#ifndef __MINGW__
|
||||
ET_EDESC /* Watch for descriptor with out-of-band data. */
|
||||
#endif
|
||||
} RunLoopEventType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue