blob: daa9c417b4716770be197fd552fa9035c08600ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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*);
|