blob: eb00523ec3dd38820afcf7bb6c3437d5e5068b88 (
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
|
#pragma once
#include "stdafx.h"
#include "WindowsManager.h"
#define ASW_CLWINDOWPOS_RIGHT 0x01
#define ASW_CLWINDOWPOS_LEFT 0x02
#define ASW_CLWINDOWPOS_DISABLED 0x03
#define ASW_WINDOWS_MERGEALL 0x01
#define ASW_WINDOWS_MERGEONE 0x02
#define ASW_WINDOWS_MERGEDISABLE 0x03
//typedef std::map<HWND, sWindowInfo> windowsList;
typedef std::list<sWindowInfo> windowsList;
struct sPluginVars {
CRITICAL_SECTION m_CS;
HWND contactListHWND;
windowsList allWindows;
bool IsUpdateInProgress;
struct {
UINT8 DrivenWindowPos;
UINT8 WindowsMerging;
} Options;
};
extern sPluginVars pluginVars;
|