Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion generation/WinSDK/manual/Metadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,14 @@ public MetadataTypedefAttribute()
}
}

[AttributeUsage(AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, AllowMultiple = true, Inherited = false)]
public class NativeAnnotationAttribute : Attribute
{
public NativeAnnotationAttribute(string annotation)
{
}
}

public class NativeArrayInfoAttribute : Attribute
{
//
Expand Down Expand Up @@ -342,4 +350,4 @@ public class UnicodeAttribute : Attribute
public UnicodeAttribute()
{
}
}
}