-
Notifications
You must be signed in to change notification settings - Fork 50
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
1 parent
9bf492e
commit fa9fa7c
Showing
3 changed files
with
32 additions
and
0 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
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,9 @@ | ||
using Rougamo; | ||
|
||
namespace Issues.Attributes | ||
{ | ||
public class _80_Attribute : MoAttribute | ||
{ | ||
public override AccessFlags Flags => AccessFlags.Method | AccessFlags.Public | AccessFlags.NonPublic; | ||
} | ||
} |
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,15 @@ | ||
using Issues.Attributes; | ||
using System; | ||
using System.Runtime.InteropServices; | ||
|
||
namespace Issues | ||
{ | ||
[_80_] | ||
public class Issue80 | ||
{ | ||
public void M() { } | ||
|
||
[DllImport("user32.dll")] | ||
private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); | ||
} | ||
} |