blob: f5fe2f66207d3b8971c07eff5ebd995a00b1547b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _MYWINDOWLIST_INC
#define _MYWINDOWLIST_INC
bool InList(HANDLE hContact, HWND hWnd);
void AddToWindowList(HANDLE hContact, HWND hWnd);
void RemoveFromWindowList(HANDLE hContact, HWND hWnd);
void PostMessageWindowList(UINT msg, WPARAM wParam, LPARAM lParam);
void PostMessageWindowListContact(HANDLE hContact, UINT msg, WPARAM wParam, LPARAM lParam);
int CountList(HANDLE hContact);
bool EmptyList(HANDLE hContact);
void InitWindowList();
void DeinitWindowList();
#endif
|