fixup some private declarations accidentally left in public header

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22568 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-02-23 15:45:43 +00:00
parent e6bb96eb06
commit 5d671ce847
8 changed files with 22 additions and 9 deletions

View file

@ -2,6 +2,15 @@
* Source/NSUserDefaults.m: Restructure for lazy creation of defaults
database ... only create when we attempt to write.
* Source\NSSocketPort.m: Include GSPrivate.h
* Source\NSRunLoop.m: ditto
* Source\unix\GSRunLoopCtxt.m: ditto
* Source\GSPrivate.h: ditto
* Source\win32\GSFileHandleWin32.m: ditto
* Source\win32\GSRunLoopCtxt.m: ditto
* Headers\Foundation\NSNotificationQueue.h: Move library internal
function declarations to GSPrivate.h, thanks to Lloyd Dupont for
spotting problem.
2006-02-23 Sheldon Gill <sheldon@westnet.net.au>

View file

@ -125,13 +125,4 @@ struct _NSNotificationQueueList;
@end
#ifndef NO_GNUSTEP
/*
* Functions used by the NSRunLoop
*/
extern void GSNotifyASAP(void);
extern void GSNotifyIdle(void);
extern BOOL GSNotifyMore(void);
#endif
#endif /* __NSNotificationQueue_h__ */

View file

@ -210,5 +210,13 @@ BOOL GSEnvironmentFlag(const char *name, BOOL def);
- (const char*) type;
@end
/*
* Functions used by the NSRunLoop and friends for processing
* queued notifications.
*/
extern void GSNotifyASAP(void);
extern void GSNotifyIdle(void);
extern BOOL GSNotifyMore(void);
#endif /* __GSPrivate_h_ */

View file

@ -42,6 +42,7 @@
#include "Foundation/NSDebug.h"
#include "GSRunLoopCtxt.h"
#include "GSRunLoopWatcher.h"
#include "GSPrivate.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>

View file

@ -43,6 +43,7 @@
#include "Foundation/NSDebug.h"
#include "GSPortPrivate.h"
#include "GSPrivate.h"
#include <stdio.h>
#include <stdlib.h>

View file

@ -11,6 +11,7 @@
#include "GNUstepBase/preface.h"
#include "../GSRunLoopCtxt.h"
#include "../GSRunLoopWatcher.h"
#include "../GSPrivate.h"
#include <Foundation/NSDebug.h>
#include <Foundation/NSNotificationQueue.h>
#include <Foundation/NSPort.h>

View file

@ -43,6 +43,7 @@
#include "Foundation/NSDebug.h"
#include "../Tools/gdomap.h"
#include "../GSPrivate.h"
#include <winsock2.h>
#include <fcntl.h>

View file

@ -11,6 +11,7 @@
#include "GNUstepBase/preface.h"
#include "../GSRunLoopCtxt.h"
#include "../GSRunLoopWatcher.h"
#include "../GSPrivate.h"
#include <Foundation/NSDebug.h>
#include <Foundation/NSNotificationQueue.h>
#include <Foundation/NSPort.h>