Skip to content

Commit

Permalink
Started support for dark mode icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Joakim Wennergren committed Aug 24, 2021
1 parent 19edb55 commit b04d089
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CsvQuery/PluginInfrastructure/NppPluginNETHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,14 @@ public struct toolbarIcons
public IntPtr hToolbarIcon;
}

[StructLayout(LayoutKind.Sequential)]
public struct toolbarIconsWithDarkMode
{
public IntPtr hToolbarBmp;
public IntPtr hToolbarIcon;
public IntPtr hToolbarIconDarkMode;
}

public class TemporaryPointer:IDisposable
{
public IntPtr Pointer { get; }
Expand Down

0 comments on commit b04d089

Please sign in to comment.