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 |
////////////////////////////////////////////////////////////
// Copyright (C) Roman Ryltsov, 2008-2009
// Created by Roman Ryltsov roman@alax.info
//
// $Id$
#pragma once
////////////////////////////////////////////////////////////
// Windows definitions
#define STRICT
#define WINVER 0x0600
#define _WIN32_WINNT 0x0600
#define _WIN32_WINDOWS 0x0410
#define _WIN32_IE 0x0700
#include <stdio.h>
#include <tchar.h>
////////////////////////////////////////////////////////////
// ATL definitions
#define _ATL_APARTMENT_THREADED
#define _ATL_NO_AUTOMATIC_NAMESPACE
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
#define _ATL_ALL_WARNINGS
#define _ATL_ATTRIBUTES
#include "roatltrace.h" // Replacement for <atltrace.h>
#include <atlbase.h>
#include <atlstr.h>
#include <atlcoll.h>
#include <atlrx.h>
#include <atlfile.h>
#include <atlpath.h>
using namespace ATL;
using namespace ATL::ATLPath;
////////////////////////////////////////////////////////////
// WTL
#define _WTL_NO_CSTRING
#define _WTL_NO_WTYPES
#define _WTL_NO_UNION_CLASSES
#define _WTL_NEW_PAGE_NOTIFY_HANDLERS
#include <atlapp.h>
//#include <atlgdi.h>
//#include <atluser.h>
//#include <atlcrack.h>
//#include <atlctrls.h>
//#include <atlctrlx.h>
//#include <atlmisc.h>
//#include <atlframe.h>
//#include <atldlgs.h>
using namespace WTL;
////////////////////////////////////////////////////////////
// Alax.Info ATL/WTL
//#define REGISTRY_PRODUCTROOT _T("SOFTWARE\\Alax.Info\\...")
//#define REGISTRY_FILEROOT REGISTRY_PRODUCTROOT _T("\\...")
//#define REGISTRY_ROOT REGISTRY_FILEROOT
#include "roatlbase.h"
#include "roatlvariants.h"
#include "roatlcom.h"
#include "roatlpersist.h"
#include "roatlmisc.h"
//#include "roatlexceptionfilter.h"
#include "rowtlapp.h"
//#include "rowtlcrack.h"
//#include "rodialogs.h"
//#include "rocontrols.h"
|