diff options
Diffstat (limited to 'include/m_popup_int.h')
-rw-r--r-- | include/m_popup_int.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/include/m_popup_int.h b/include/m_popup_int.h new file mode 100644 index 0000000000..b241f7bebe --- /dev/null +++ b/include/m_popup_int.h @@ -0,0 +1,43 @@ +#ifndef M_POPUP_INT_H +#define M_POPUP_INT_H + +#include <m_popup.h> + +// Creates new popup +// wParam = (WPARAM)(POPUPDATA2*)&ppd2 +// lParam = (LPARAM)(combination of APF_* flags) +// returns: window handle (if requested) of NULL on success, -1 on failure. +#define MS_POPUP_ADDPOPUP2 "Popup/AddPopup2" + +// Update an popup +// wParam = (WPARAM)(HWND)hwndPopup +// lParam = (LPARAM)(POPUPDATA2*)&ppd2 +// returns: zero on success, -1 on failure. +#define MS_POPUP_CHANGEPOPUP2 "Popup/ChangePopup2" + +///////////////////////////////////////////////////////////////////////////////////////// +// Compatibility services + +#define MS_POPUP_ADDPOPUP "Popup/AddPopup" +#define MS_POPUP_ADDPOPUPW "Popup/AddPopupW" + +#define MS_POPUP_CHANGEW "Popup/ChangeW" +#define MS_POPUP_CHANGETEXTW "Popup/ChangetextW" + +#define MS_POPUP_DESTROYPOPUP "Popup/Delete" + +#define MS_POPUP_GETPLUGINDATA "Popup/GetPluginData" + +#define MS_POPUP_GETCONTACT "Popup/GetContact" + +#define MS_POPUP_REGISTERACTIONS "Popup/RegisterActions" +#define MS_POPUP_REGISTERNOTIFICATION "Popup/RegisterNotification" + +#define MS_POPUP_SHOWMESSAGE "Popup/ShowMessage" +#define MS_POPUP_SHOWMESSAGEW "Popup/ShowMessageW" + +#define MS_POPUP_REGISTERCLASS "Popup/RegisterClass" +#define MS_POPUP_UNREGISTERCLASS "Popup/UnregisterClass" +#define MS_POPUP_ADDPOPUPCLASS "Popup/AddPopupClass" + +#endif // M_POPUP_INT_H |