* Headers/Foundation/NSRunLoop.h: Reorder RunLoopEventType for binary

compatibility.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20861 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2005-03-07 01:11:38 +00:00
parent 7bd5f9b5b0
commit f954dc9176
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-03-06 Matt Rice <ratmice@yahoo.com>
* Headers/Foundation/NSRunLoop.h: Reorder RunLoopEventType for binary
compatibility.
2005-03-06 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Foundation/NSCharacterSet.h: Add documentation and method

View file

@ -113,9 +113,12 @@ typedef enum {
#else
ET_RDESC, /* Watch for descriptor becoming readable. */
ET_WDESC, /* Watch for descriptor becoming writeable. */
ET_EDESC, /* Watch for descriptor with out-of-band data. */
#endif
ET_RPORT /* Watch for message arriving on port. */
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;
/**