]> git.sesse.net Git - casparcg/blob - modules/flash/StdAfx.h
No more use for retry_task in decklink_consumer now since audio and video are complet...
[casparcg] / modules / flash / StdAfx.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #ifdef __cplusplus
25 #define NOMINMAX
26 #define WIN32_LEAN_AND_MEAN
27
28 #include "../common/compiler/vs/disable_silly_warnings.h"
29
30 #if defined _DEBUG && defined _MSC_VER
31 #include <crtdbg.h>
32 #endif
33
34 #include <assert.h>
35 #include <memory>
36 #include <array>
37 #include <functional>
38 #include <algorithm>
39 #include <vector>
40 #include <deque>
41 #include <queue>
42 #include <string>
43 #include <math.h>
44
45 #include <tbb/atomic.h>
46 #include <tbb/concurrent_queue.h>
47
48 #include <boost/filesystem.hpp>
49 #include <boost/range/algorithm.hpp>
50 #include <boost/format.hpp>
51 #include <boost/algorithm/string.hpp>
52 #include <boost/regex.hpp>
53 #include <boost/property_tree/ptree.hpp>
54
55 #include "../common/utf.h"
56 #include "../common/memory.h"
57 //#include "../common/executor.h" // Can't include this due to MSVC lambda bug
58
59 #include "../common/log.h"
60 #include "../common/except.h"
61 #endif
62 #include <rpc.h>
63 #include <rpcndr.h>