···2525// `OTATrustUtilities.m` only imports that on iOS, but still expects this to be
2626// defined on macOS (i figure it's probably an error in Apple's code,
2727// because even `SecAKSWrappers.c` uses a different constant on macOS)
2828-#define kMobileKeyBagLockStatusNotificationID (-1)
2828+#define kMobileKeyBagLockStatusNotificationID "kMobileKeyBagLockStatusNotificationID"
29293030// seem to be implicitly depended on by `OTATrustUtilities.m` in Security
3131#import <MobileAsset/ASAsset.h>
···31313232@interface MAAssetQuery : NSObject
33333434+- (MAQueryResult) queryMetaDataSync;
3535+3436// guessing it's readonly, since it wouldn't really make sense for clients to be able to
3537// write results to a query
3638@property (readonly) NSArray<MAAsset*>* results;