mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
* 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:
parent
7bd5f9b5b0
commit
f954dc9176
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue