vendor_identifier.h 478 B

12345678910111213141516171819
  1. /*
  2. vendor_identifier.h
  3. TrustKit
  4. Copyright 2016 The TrustKit Project Authors
  5. Licensed under the MIT license, see associated LICENSE file for terms.
  6. See AUTHORS file for the list of project authors.
  7. */
  8. #if __has_feature(modules)
  9. @import Foundation;
  10. #else
  11. #import <Foundation/Foundation.h>
  12. #endif
  13. // Will return the IDFV on platforms that support it (iOS, tvOS) and a randomly generated UUID on other platforms (macOS, watchOS)
  14. NSString *identifier_for_vendor(void);