More tidyups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23914 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-10-19 13:51:19 +00:00
parent 6e8a8de18e
commit 0d0ae9d9a8
16 changed files with 156 additions and 285 deletions

View file

@ -220,11 +220,12 @@ typedef enum {
/*
* Functions used by the NSRunLoop and friends for processing
* queued notifications.
* queued notifications and task completion events.
*/
extern void GSNotifyASAP(void);
extern void GSNotifyIdle(void);
extern BOOL GSNotifyMore(void);
BOOL GSPrivateCheckTasks(void) GS_ATTRIB_PRIVATE;
void GSPrivateNotifyASAP(void) GS_ATTRIB_PRIVATE;
void GSPrivateNotifyIdle(void) GS_ATTRIB_PRIVATE;
BOOL GSPrivateNotifyMore(void) GS_ATTRIB_PRIVATE;
/* This class exists to encapsulate various otherwise unrelated functions
* so that we expose a single global symbol (the class) whose name marks it
@ -237,14 +238,8 @@ extern BOOL GSNotifyMore(void);
*/
@interface GSPrivate : NSObject
{
@public
NSDictionary *cachedLocale;
}
/* Update information from defaults system
*/
- (void) defaultsChanged: (NSNotification*)n;
/* Return the text describing the last system error to have occurred.
*/
- (NSString*) error;