1 #pragma once
2 
3 #include <stdarg.h>
4 #include <tchar.h>
5 #include <stdio.h>
6 
7 #include <string>
8 #include <sstream>
9 #include <algorithm>
10 #include <iterator>
11 
12 #define WIN32_LEAN_AND_MEAN
13 #define STRICT
14 #define NOMINMAX
15 
16 #include <windows.h>
17 #include <objbase.h>
18 #include <objsafe.h>
19 
20 #include <ocidl.h>
21 
22 #include <strsafe.h>
23 
24 #import "./rdesktop-core-tester.tlb" \
25 	exclude("LONG_PTR", "UINT_PTR", "wireHWND", "_RemotableHandle", "__MIDL_IWinTypes_0009") \
26 	named_guids \
27 	no_implementation \
28 	no_smart_pointers \
29 	raw_dispinterfaces \
30 	raw_interfaces_only \
31 	raw_native_types
32 
33 // EOF
34