This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Taiizor
authored and
Taiizor
committed
Apr 11, 2021
1 parent
ee67b12
commit 6967db7
Showing
7 changed files
with
480 additions
and
46 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,44 @@ | ||
#region Imports | ||
|
||
using System; | ||
using System.Runtime.InteropServices; | ||
using Taskbar.Enum; | ||
|
||
#endregion | ||
|
||
namespace Taskbar.Struct | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public class Structs | ||
{ | ||
#region Structs | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
[StructLayout(LayoutKind.Sequential)] | ||
public struct Data | ||
{ | ||
public uint cbSize; | ||
public IntPtr hWnd; | ||
public uint uCallbackMessage; | ||
public Enums.EdgeType uEdge; | ||
public Rectangle rect; | ||
public int lParam; | ||
} | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
[StructLayout(LayoutKind.Sequential)] | ||
public struct Rectangle | ||
{ | ||
public int Left; | ||
public int Top; | ||
public int Right; | ||
public int Bottom; | ||
} | ||
#endregion | ||
} | ||
} |
Oops, something went wrong.