blob: 80d9286fa4f1a20b9fc25eea660abb2411e01d81 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
noinst_LTLIBRARIES = librfb_win32.la
HDRS = \
AboutDialog.h \
BitmapInfo.h \
CKeyboard.h \
Clipboard.h \
CompatibleBitmap.h \
ComputerName.h \
CPointer.h \
CurrentUser.h \
DeviceContext.h \
DeviceFrameBuffer.h \
Dialog.h \
DIBSectionBuffer.h \
DynamicFn.h \
EventManager.h \
Handle.h \
IconInfo.h \
IntervalTimer.h \
keymap.h \
LaunchProcess.h \
ListViewControl.h \
LocalMem.h \
LogicalPalette.h \
LowLevelKeyEvents.h \
ModuleFileName.h \
MonitorInfo.h \
MsgBox.h \
MsgWindow.h \
OSVersion.h \
ProgressControl.h \
RegConfig.h \
Registry.h \
ScaledDIBSectionBuffer.h \
SDisplayCoreDriver.h \
SDisplayCorePolling.h \
SDisplayCoreWMHooks.h \
SDisplay.h \
Security.h \
Service.h \
SInput.h \
SocketManager.h \
TCharArray.h \
Threading.h \
ToolBar.h \
TrayIcon.h \
TsSessions.h \
Win32Util.h \
WMCursor.h \
WMHooks.h \
WMNotifier.h \
WMPoller.h \
WMShatter.h \
WMWindowCopyRect.h
librfb_win32_la_SOURCES = $(HDRS) \
AboutDialog.cxx \
CKeyboard.cxx \
Clipboard.cxx \
CPointer.cxx \
CurrentUser.cxx \
DeviceContext.cxx \
DeviceFrameBuffer.cxx \
Dialog.cxx \
DIBSectionBuffer.cxx \
DynamicFn.cxx \
EventManager.cxx \
LaunchProcess.cxx \
ListViewControl.cxx \
LowLevelKeyEvents.cxx \
MonitorInfo.cxx \
MsgWindow.cxx \
OSVersion.cxx \
ProgressControl.cxx \
RegConfig.cxx \
Registry.cxx \
ScaledDIBSectionBuffer.cxx \
SDisplayCorePolling.cxx \
SDisplayCoreWMHooks.cxx \
SDisplay.cxx \
Security.cxx \
Service.cxx \
SInput.cxx \
SocketManager.cxx \
TCharArray.cxx \
Threading.cxx \
ToolBar.cxx \
TsSessions.cxx \
Win32Util.cxx \
WMCursor.cxx \
WMHooks.cxx \
WMNotifier.cxx \
WMPoller.cxx \
WMShatter.cxx \
WMWindowCopyRect.cxx
# These files rely on features not yet in upstream mingw
if BUILD_WINVNC
librfb_win32_la_SOURCES += \
CleanDesktop.h \
CleanDesktop.cxx
endif
librfb_win32_la_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/win
librfb_win32_la_LIBADD =
EXTRA_DIST = CMakeLists.txt
|