diff options
Diffstat (limited to 'plugins/LotusNotify/src/LotusNotify.h')
-rw-r--r-- | plugins/LotusNotify/src/LotusNotify.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/LotusNotify/src/LotusNotify.h b/plugins/LotusNotify/src/LotusNotify.h new file mode 100644 index 0000000000..daa9c417b4 --- /dev/null +++ b/plugins/LotusNotify/src/LotusNotify.h @@ -0,0 +1,32 @@ +
+struct HISTORIA
+{
+ DWORD noteID;
+ BOOL clicked;
+ BOOL again;
+ struct HISTORIA *next;
+ struct POPUPSQUEUE *pq;
+};
+
+struct POPUPSQUEUE
+{
+ HWND hWnd;
+ struct POPUPSQUEUE *next;
+};
+
+#if !defined(MIID_LOTUSNOTIFY)
+ #define MIID_LOTUSNOTIFY {0x127faa08, 0x54d0, 0x4f99, { 0x8a, 0x50, 0x6b, 0x5f, 0xd8, 0x92, 0x42, 0xec } }
+#endif
+// {127FAA08-54D0-4f99-8A50-6B5FD89242EC}
+
+//structure contines only LN msg id to send to popup
+typedef struct {
+ DWORD id;
+ char strNote[4*16];
+} POPUPATT;
+
+__declspec(dllexport) STATUS LNPUBLIC MainEntryPoint (void);
+
+void ErMsgT(TCHAR* msg);
+
+void checkthread(void*);
|