Apple compatibility fixups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24207 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-12-15 11:33:18 +00:00
parent 1e7cdf229b
commit 50c5c6b2d9
7 changed files with 43 additions and 26 deletions

View file

@ -74,9 +74,9 @@ extern "C" {
</example>
*/
typedef enum {
NSPostWhenIdle,
NSPostASAP,
NSPostNow
NSPostWhenIdle = 1,
NSPostASAP = 2,
NSPostNow = 3
} NSPostingStyle;
/**
@ -91,9 +91,9 @@ typedef enum {
</example>
*/
typedef enum {
NSNotificationNoCoalescing = 0,
NSNotificationCoalescingOnName = 1,
NSNotificationCoalescingOnSender = 2,
NSNotificationNoCoalescing = 0,
NSNotificationCoalescingOnName = 1,
NSNotificationCoalescingOnSender = 2,
} NSNotificationCoalescing;
/*