-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdafx.h
86 lines (76 loc) · 2.5 KB
/
stdafx.h
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
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
//#ifndef VC_EXTRALEAN
//#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
//#endif
#include <afx.h>
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxcview.h>
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <iostream>
#include <afxcontrolbars.h> // MFC support for ribbons and control bars
#include <afxsock.h> // MFC socket extensions
#include <afxinet.h>
#include <afxmt.h> // for CCriticalSection
#include <iostream>
#include <locale>
#include <iomanip>
#include <fstream>
#include <map>
#include <sstream>
#include <vector>
#include <queue>
#include <algorithm>
#include <ctime>
#include <chrono>
#include <codecvt>
#include <locale>
#include <regex>
#include <signal.h>
#include <memory> // for smart pointers
#include <xmllite.h>
#pragma comment(lib, "xmllite")
#include <iphlpapi.h>
#pragma comment(lib, "IPHLPAPI.lib")
#include <bcrypt.h>
#pragma comment(lib, "bcrypt")
#include <wincrypt.h>
#pragma comment(lib, "crypt32.lib")
#include <windns.h> // for mDNS functions related to Bonjour https://learn.microsoft.com/en-us/windows/win32/api/windns/nf-windns-dnsserviceregister
#pragma comment(lib, "dnsapi.lib")
// FFMPEG Libraries
//extern "C" {
//#include <libavcodec/avcodec.h>
//#include <libavformat/avformat.h>
//#include <libavutil/dict.h>
//}
//#pragma comment(lib, "avformat")
//#pragma comment(lib, "avcodec")
//#pragma comment(lib, "avutil")
//#pragma comment(lib, "avdevice")
//#pragma comment(lib, "avfilter")
//#pragma comment(lib, "postproc")
//#pragma comment(lib, "swresample")
//#pragma comment(lib, "swscale")
#include "WimISO8601.h"
#include "WimTiVoServerEventLog.h"
#include "Dtwinver.h"
#define _INTERNAL_TiVoDecode
#ifdef _INTERNAL_TiVoDecode
#include "libTiVoDecode/happyfile.h"
#include "libTiVoDecode/turing_stream.h"
#include "libTiVoDecode/tivodecoder.h"
#endif