Add methods for 10.5

This commit is contained in:
Gregory John Casamento 2020-10-26 23:53:11 -04:00
parent 36da869287
commit 85f590f88e
4 changed files with 77 additions and 4 deletions

View file

@ -34,12 +34,18 @@ extern "C" {
@class NSTimer, NSDate, NSPort;
typedef NSString* NSRunLoopMode;
/**
* Run loop mode used to deal with input sources other than NSConnections or
* dialog windows. Most commonly used. Defined in
* <code>Foundation/NSRunLoop.h</code>.
*/
GS_EXPORT NSString * const NSDefaultRunLoopMode;
GS_EXPORT NSRunLoopMode const NSDefaultRunLoopMode;
GS_EXPORT NSRunLoopMode const NSRunLoopCommonModes;
GS_EXPORT NSRunLoopMode const NSEventTrackingRunLoopMode;
GS_EXPORT NSRunLoopMode const NSModalPanelRunLoopMode;
GS_EXPORT NSRunLoopMode const UITrackingRunLoopMode;
@interface NSRunLoop : NSObject
{