diff options
author | George Hazan <ghazan@miranda.im> | 2022-12-11 15:39:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-12-11 15:39:56 +0300 |
commit | 5c32a2be61a50e091b114c957c04373aacf2f43e (patch) | |
tree | 3843fed4cd336269ec6f6068655d99b97a18f866 /plugins/ExternalAPI/m_protoplugin.h | |
parent | a6b295814c643f46ae1ef6f327843b1b357521ac (diff) |
YAMN: option "Display menu item" removed due to Options -> Customize -> Menus editor
Diffstat (limited to 'plugins/ExternalAPI/m_protoplugin.h')
-rw-r--r-- | plugins/ExternalAPI/m_protoplugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExternalAPI/m_protoplugin.h b/plugins/ExternalAPI/m_protoplugin.h index 70e8c29937..1d6eccee84 100644 --- a/plugins/ExternalAPI/m_protoplugin.h +++ b/plugins/ExternalAPI/m_protoplugin.h @@ -15,7 +15,7 @@ struct CheckParam //Your plugin should use this definition
#define YAMN_CHECKVERSION 2
//Version of this structure. Please verify your version in your plugin
- DWORD Ver;
+ int Ver;
//Event that new Check thread must set to signal calling thread that "I've copied all parameters from stack"
//IMPORTANT!!!: Although version #defined in your plugin is not the same, your plugin MUST signal this event
//in any way. YAMN is waiting for this event. If you do not signal it, YAMN is blocked.
@@ -26,7 +26,7 @@ struct CheckParam //I thought it, but this is needed, too
#define YAMN_NORMALCHECK 0
#define YAMN_FORCECHECK 1
- DWORD Flags;
+ int Flags;
//YAMN writes here some informations that are needed to pass to mail browser function (or bad connection)
void *BrowserParam;
|