You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// BOOL NPPM_GETOPENFILENAMES_DEPRECATED(wchar_t** fileNames, int nbFileNames) - DEPRECATED: It is kept for the compatibility. Use NPPM_GETBUFFERIDFROMPOS & NPPM_GETFULLPATHFROMBUFFERID instead.
88
-
// Get the open files full paths of both views. User is responsible to allocate an big enough fileNames array by using NPPM_GETNBOPENFILES.
88
+
// Get the open files full paths of both views. User is responsible to allocate a big enough fileNames array by using NPPM_GETNBOPENFILES.
89
89
// wParam[out]: fileNames - array of file path
90
90
// lParam[in]: nbFileNames is the number of file path.
91
91
// return value: The number of files copied into fileNames array
long internalMsg; // an integer defined by plugin Y, known by plugin X, identifying the message being sent.
375
-
constwchar_t * srcModuleName; // the complete module name (with the extesion .dll) of caller (plugin X).
376
-
void* info; // defined by plugin, the informations to be exchanged between X and Y. It's a void pointer so it should be defined by plugin Y and known by plugin X.
374
+
long internalMsg; // an integer defined by plugin Y, known by plugin X, identifying the message being sent.
375
+
constwchar_t * srcModuleName; // the complete module name (with the extension .dll) of caller (plugin X).
376
+
void* info; // defined by plugin, the information to be exchanged between X and Y. It's a void pointer so it should be defined by plugin Y and known by plugin X.
// Get the bookmark ID - use this API to get bookmark ID dynamically that garantees you get always the right bookmark ID even it's been changed through the different versions.
907
+
// Get the bookmark ID - use this API to get bookmark ID dynamically that guarantees you get always the right bookmark ID even it's been changed through the different versions.
// BOOL NPPM_ADDSCNMODIFIEDFLAGS(0, unsigned long scnMotifiedFlags2Add)
993
+
// BOOL NPPM_ADDSCNMODIFIEDFLAGS(0, unsigned long scnModifiedFlags2Add)
994
994
// Add the necessary SCN_MODIFIED flags so that your plugin will receive the SCN_MODIFIED notification for these events, enabling your specific treatments.
995
995
// By default, Notepad++ only forwards SCN_MODIFIED with the following 5 flags/events:
// If your plugin needs to process other SCN_MODIFIED events, you should add the required flags by sending this message to Notepad++. You can send it immediately after receiving NPPN_READY,
998
998
// or only when your plugin needs to listen to specific events (to avoid penalizing Notepad++'s performance). Just ensure that the message is sent only once.
999
999
// wParam: 0 (not used)
1000
-
// lParam[in]: scnMotifiedFlags2Add - Scintilla SCN_MODIFIED flags to add.
1000
+
// lParam[in]: scnModifiedFlags2Add - Scintilla SCN_MODIFIED flags to add.
// Get Notepad++ toobar icon set choice (Fluent UI: small, Fluent UI: large, Filled Fluent UI: small, Filled Fluent UI: large and Standard icons: small.
1022
+
// Get Notepad++ toolbar icon set choice (Fluent UI: small, Fluent UI: large, Filled Fluent UI: small, Filled Fluent UI: large and Standard icons: small.
1023
1023
// wParam: 0 (not used)
1024
1024
// lParam: 0 (not used)
1025
1025
// Return toolbar icon set choice as an integer value. Here are 5 possible values:
0 commit comments