Skip to content

Commit

Permalink
[AuthenticationServices] Implement Xcode 16.0 beta 1-6 changes. (#21143)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Sep 6, 2024
1 parent e2c0cb3 commit 9efe694
Show file tree
Hide file tree
Showing 12 changed files with 571 additions and 434 deletions.
431 changes: 425 additions & 6 deletions src/authenticationservices.cs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/bgen/Caches/TypeCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public class TypeCache {
public Type SCNVector4 { get; }
public Type SecAccessControl { get; }
public Type SecIdentity { get; }
public Type SecKey { get; }
public Type SecTrust { get; }
public Type SecProtocolMetadata { get; }
public Type SecProtocolOptions { get; }
Expand Down Expand Up @@ -229,6 +230,7 @@ public TypeCache (MetadataLoadContext universe, Frameworks frameworks, PlatformN
SCNMatrix4 = Lookup (platformAssembly, "SceneKit", "SCNMatrix4");
SecAccessControl = Lookup (platformAssembly, "Security", "SecAccessControl");
SecIdentity = Lookup (platformAssembly, "Security", "SecIdentity");
SecKey = Lookup (platformAssembly, "Security", "SecKey");
SecTrust = Lookup (platformAssembly, "Security", "SecTrust");
SecProtocolOptions = Lookup (platformAssembly, "Security", "SecProtocolOptions");
SecProtocolMetadata = Lookup (platformAssembly, "Security", "SecProtocolMetadata");
Expand Down
1 change: 1 addition & 0 deletions src/bgen/Models/MarshalTypeList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public void Load (TypeCache typeCache, Frameworks frameworks)
Add (typeCache.AudioUnit);
Add (typeCache.SecIdentity);
Add (typeCache.SecIdentity2);
Add (typeCache.SecKey);
Add (typeCache.SecTrust);
Add (typeCache.SecTrust2);
Add (typeCache.SecProtocolOptions);
Expand Down
142 changes: 141 additions & 1 deletion tests/cecil-tests/Documentation.KnownFailures.txt

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

Loading

8 comments on commit 9efe694

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.