forked from jmfrouin/stweaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfos.cpp
More file actions
174 lines (151 loc) · 5.07 KB
/
Infos.cpp
File metadata and controls
174 lines (151 loc) · 5.07 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// Infos.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "Infos.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Infos dialog
Infos::Infos(CWnd* pParent /*=NULL*/)
: CDialog(Infos::IDD, pParent)
{
//{{AFX_DATA_INIT(Infos)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void Infos::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Infos)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(Infos, CDialog)
//{{AFX_MSG_MAP(Infos)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Infos message handlers
BOOL Infos::OnInitDialog()
{
MEMORYSTATUS mem;
SYSTEM_INFO sys;
CString temp,t;
HKEY hkey;
DWORD val;
DWORD dwType;
DWORD dwLength;
CDialog::OnInitDialog();
int tem;
mem.dwLength = sizeof(MEMORYSTATUS);
GlobalMemoryStatus(&mem);
// Memory load
temp.Format(_T("%d %%"), mem.dwMemoryLoad);
this->SetDlgItemText(IDC_MemoryLoad, temp);
// Total physical
if (mem.dwTotalPhys > 1024) {
tem = (mem.dwTotalPhys / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
tem = mem.dwTotalPhys;
temp.Format(_T("%d bytes"), tem);
}
this->SetDlgItemText(IDC_TotalPhys, temp);
// Available physical
if (mem.dwAvailPhys > 1024) {
tem = (mem.dwAvailPhys / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
tem = mem.dwAvailPhys;
temp.Format(_T("%d bytes"), tem);
}
this->SetDlgItemText(IDC_AvailPhys, temp);
// Used physical
if ((mem.dwTotalPhys - mem.dwAvailPhys) > 1024) {
tem = ((mem.dwTotalPhys - mem.dwAvailPhys) / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
temp.Format(_T("%d bytes"), (mem.dwTotalPhys - mem.dwAvailPhys));
}
this->SetDlgItemText(IDC_UsedPhys, temp);
// Total virtual
if (mem.dwTotalVirtual > 1024) {
tem = (mem.dwTotalVirtual / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
tem = mem.dwTotalVirtual;
temp.Format(_T("%d bytes"), tem);
}
this->SetDlgItemText(IDC_TotalVirtual, temp);
// Available virtual
if (mem.dwAvailVirtual > 1024) {
tem = (mem.dwAvailVirtual / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
tem = mem.dwAvailVirtual;
temp.Format(_T("%d bytes"), tem);
}
this->SetDlgItemText(IDC_AvailVirtual, temp);
// Used virtual
if ((mem.dwTotalVirtual - mem.dwAvailVirtual) > 1024) {
tem = ((mem.dwTotalVirtual - mem.dwAvailVirtual) / 1024);
temp.Format(_T("%d Kb"), tem);
} else {
temp.Format(_T("%d bytes"), (mem.dwTotalVirtual - mem.dwAvailVirtual));
}
this->SetDlgItemText(IDC_UsedVirtual, temp);
// System / CPU info
GetSystemInfo(&sys);
switch (sys.dwProcessorType) {
case PROCESSOR_INTEL_386:
temp.Format(_T("Intel 386 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
case PROCESSOR_INTEL_486:
temp.Format(_T("Intel 486 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
case PROCESSOR_INTEL_PENTIUM:
temp.Format(_T("Intel Pentium (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
#ifdef PROCESSOR_MIPS_R3000
case PROCESSOR_MIPS_R3000:
temp.Format(_T("Mips R3000 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
#endif
case PROCESSOR_MIPS_R4000:
temp.Format(_T("Mips R4000 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
case PROCESSOR_HITACHI_SH3:
temp.Format(_T("SH3 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
case PROCESSOR_HITACHI_SH4:
temp.Format(_T("SH4 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
#ifdef PROCESSOR_PPC_821
case PROCESSOR_PPC_821:
temp.Format(_T("PPC 821 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
#endif
case PROCESSOR_STRONGARM:
temp.Format(_T("Strong ARM (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
case PROCESSOR_ARM720:
temp.Format(_T("ARM 720 (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
default:
temp.Format(_T("Unknown Proc (%d Processor(s))"), sys.dwNumberOfProcessors);
break;
}
this->SetDlgItemText(IDC_Proc, temp);
// Boot count
RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("Comm"), 0,
KEY_ALL_ACCESS, &hkey);
RegQueryValueEx(hkey, TEXT("BootCount"), NULL, &dwType, (LPBYTE)&val, &dwLength);
RegCloseKey(hkey);
temp.Format(_T("You have press 0x%x\n(%d) times Soft Reset Button"), val, val);
this->SetDlgItemText(IDC_BootCount, temp);
return TRUE;
}