FPRConstants.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <Foundation/Foundation.h>
  15. // SDK Version number.
  16. FOUNDATION_EXTERN const char* const kFPRSDKVersion;
  17. // Prefix for internal naming of objects
  18. FOUNDATION_EXTERN NSString* const kFPRInternalNamePrefix;
  19. // Max length for object names
  20. FOUNDATION_EXTERN int const kFPRMaxNameLength;
  21. // Max URL length
  22. FOUNDATION_EXTERN int const kFPRMaxURLLength;
  23. // Max length for attribute name.
  24. FOUNDATION_EXTERN int const kFPRMaxAttributeNameLength;
  25. // Max length for attribute value.
  26. FOUNDATION_EXTERN int const kFPRMaxAttributeValueLength;
  27. // Maximum number of global custom attributes.
  28. FOUNDATION_EXTERN int const kFPRMaxGlobalCustomAttributesCount;
  29. // Maximum number of trace custom attributes.
  30. FOUNDATION_EXTERN int const kFPRMaxTraceCustomAttributesCount;