Fix accidentally exposed private headers.

Implement code to handle windows messages on a per-window basis.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21916 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-10-30 10:42:42 +00:00
parent 0e803760c6
commit 43f720e62a
10 changed files with 94 additions and 28 deletions

View file

@ -109,8 +109,9 @@ GS_EXPORT NSString * const NSDefaultRunLoopMode;
*/
typedef enum {
#ifdef __MINGW32__
ET_HANDLE,
ET_RPORT /* Watch for message arriving on port. */
ET_HANDLE, /* Watch for an I/O event on a handle. */
ET_RPORT, /* Watch for message arriving on port. */
ET_WINMSG, /* Watch for a message on a window handle. */
#else
ET_RDESC, /* Watch for descriptor becoming readable. */
ET_WDESC, /* Watch for descriptor becoming writeable. */