-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>1.0.2</Version> | ||
<Version>1.0.3</Version> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using System.Text.RegularExpressions; | ||
|
||
namespace Hosihikari.NativeInterop.Generation; | ||
|
||
public interface ITypeReferenceProvider | ||
{ | ||
public static abstract Regex Regex { get; } | ||
|
||
public static abstract Type Matched(Regex regex); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Hosihikari.NativeInterop.Generation; | ||
namespace Hosihikari.NativeInterop.Generation; | ||
|
||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] | ||
public class PredefinedTypeAttribute : Attribute | ||
{ | ||
public string NativeTypeName { get; set; } = string.Empty; | ||
|
||
public string NativeTypeNamespace { get; set; } = string.Empty; | ||
} |