NSDate: declare system clock change notification

Declare a system clock change notification. Base still does not emit
this notification, but this allows applications that wait for it not to
have their build broken.
This commit is contained in:
Daniel Ferreira 2017-06-21 09:34:46 +10:00 committed by Ivan Vučica
parent 58db96f385
commit be874e5d8f
2 changed files with 3 additions and 0 deletions

View file

@ -29,6 +29,8 @@
extern "C" {
#endif
GS_EXPORT NSString * const NSSystemClockDidChangeNotification;
/**
* Time interval difference between two dates, in seconds.
*/

View file

@ -55,6 +55,7 @@
#endif
const NSTimeInterval NSTimeIntervalSince1970 = 978307200.0;
NSString *const NSSystemClockDidChangeNotification = @"NSSystemClockDidChangeNotification";