-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdafx.h
70 lines (58 loc) · 3.7 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
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#pragma warning(disable:4996)
#pragma warning(disable:4018)
#pragma warning(disable:4200)
#pragma warning(disable:4244)
#pragma warning(disable:4305)
#pragma warning(disable:4503)
#pragma warning(disable:4482)
#pragma warning(disable:4005)
#define _CRT_SECURE_NO_WARNINGS
#define DLL_SOUI
#include <souistd.h>
#include <core/SHostDialog.h>
#include <control/SMessageBox.h>
#include <control/souictrls.h>
#include <res.mgr/sobjdefattr.h>
#include <com-cfg.h>
#include <event/SNotifyCenter.h>
#include "trayicon/SShellNotifyIcon.h"
#include "resource.h"
#define R_IN_CPP //定义这个开关来
#include "res\resource.h"
#include "layout/SouiLayout.h"
using namespace SOUI;
#include <sstream>
#include <fstream>
#include <stdio.h>
#include <io.h>
#include <Imm.h>
#pragma comment(lib, "imm32.lib")
#include "extend.ctrls/imre/SImRichEdit.h"
#include "extend.ctrls/SButtonEx.h"
#include "extend.ctrls/ExtendCtrls.h"
#include "extend.ctrls/SSplitBar.h"
#include "extend.ctrls/SImageView.h"
#include "extend.skins/ExtendSkins.h"
#include "extend.skins/SAntialiasSkin.h"
#include "extend.skins/SVscrollbar.h"
#include "extend.ctrls/gif/SAniImgFrame.h"
#include "extend.ctrls/gif/SGifPlayer.h"
#include "extend.ctrls/gif/SSkinAPNG.h"
#include "extend.ctrls/gif/SSkinGif.h"
#include "CommonFunction.h"
#include <math.h>
#include "snapshot/CBitmap.h"
#include "snapshot/CGdiDc.h"
#include <GdiPlus.h>
using namespace Gdiplus;
#pragma comment(lib, "Gdiplus.lib")
#ifndef _Post_writable_byte_size_
#define _Post_writable_byte_size_(s)
#endif
#define EVT_SNAPSHOTFINISH (EVT_EXTERNAL_BEGIN + 0x0101)
#define EVT_SNAPSHOTCANCEL (EVT_EXTERNAL_BEGIN + 0x0102)