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:
Richard Frith-Macdonald 2005-07-23 13:43:31 +00:00
parent 0de7dcbe08
commit b04d24f664
2 changed files with 3 additions and 3 deletions

View file

@ -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;