diff options
Diffstat (limited to 'plugins/ExternalAPI/m_yamn.h')
-rw-r--r-- | plugins/ExternalAPI/m_yamn.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/plugins/ExternalAPI/m_yamn.h b/plugins/ExternalAPI/m_yamn.h index 3ba9b07cd1..10b4f94513 100644 --- a/plugins/ExternalAPI/m_yamn.h +++ b/plugins/ExternalAPI/m_yamn.h @@ -7,13 +7,13 @@ //================================== VARIABLES STRUCT ========================================
//
-typedef struct CYAMNVariables
+struct YAMN_VARIABLES
{
#define YAMN_VARIABLESVERSION 3
MWindowList MessageWnds;
MWindowList NewMailAccountWnd;
int Shutdown;
-} YAMN_VARIABLES, *PYAMN_VARIABLES;
+};
//
//================================== EXPORTED FUNCTIONS STRUCT ===============================
@@ -68,13 +68,6 @@ struct CExportedServices //returns pointer to YAMN function or NULL when functions does not exist
#define MS_YAMN_GETFCNPTR "YAMN/Service/GetFcn"
-//GetVariables Service
-//Ask YAMN for pointer to CYAMNVariables structure.
-//WPARAM- YAMN_VARIABLESVERSION
-//LPARAM- any value
-//returns pointer to YAMN_VARIABLES or NULL when version of structure does not match
-#define MS_YAMN_GETVARIABLES "YAMN/Service/GetVar"
-
//ForceCheck Service
//Check mail on accounts
//WPARAM- not used
|