mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
20 lines
500 B
C#
20 lines
500 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HybridCLR
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class ReversePInvokeWrapperGenerationAttribute : Attribute
|
|
{
|
|
public int ReserveWrapperCount { get; }
|
|
|
|
public ReversePInvokeWrapperGenerationAttribute(int reserveWrapperCount)
|
|
{
|
|
ReserveWrapperCount = reserveWrapperCount;
|
|
}
|
|
}
|
|
}
|