NotepadPlusPlusPluginPack.Net
NotepadPlusPlusPluginPack.Net copied to clipboard
.Net package to install into visual studio to make plugins for Notepad++
Hi all! I started revamping a legacy plugin written in .Net full framework v4.8 to the new .Net 6. After implementing all interfaces `isUnicode`, `setInfo`, `getFuncsArray`, `messageProc`, `getName` and `beNotified`...
I have: ```csharp public void OnNotification(ScNotification notification) { if (notification.Header.Code == (uint)SciMsg.SCN_UPDATEUI) { if ((notification.Updated & (uint)SciMsg.SC_UPDATE_V_SCROLL) == (uint)SciMsg.SC_UPDATE_V_SCROLL) { ... ``` Trying to match if the notification [`updated` field...
### **Problem Statement:** Trying to support x64 features into a plugin pack which was initially designed to be target x86 arch/runtime only under .NET 4.0 framework. The plugin pack is...