Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions SystemInformer/SystemInformer.rc
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
// TEXTINCLUDE
//

1 TEXTINCLUDE
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END

2 TEXTINCLUDE
2 TEXTINCLUDE
BEGIN
"#include ""winres.h""\r\n"
"#include ""include/phappres.h""\0"
END

3 TEXTINCLUDE
3 TEXTINCLUDE
BEGIN
"\0"
END
Expand Down Expand Up @@ -622,6 +622,21 @@ BEGIN
COMBOBOX IDC_GROUPCPU,220,4,52,30,CBS_DROPDOWNLIST | CBS_SORT | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
END

IDD_CPUSETS DIALOGEX 0, 0, 368, 244
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CAPTION "CPU Sets"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
LTEXT "CPU Sets provide a way to declare CPU affinity in a soft manner that is compatible with OS power management, and to reaffinitize all background threads in the process to a subset of processors to avoid interference from OS threads within the process.",IDC_STATIC,6,6,339,23
CONTROL "",IDC_LIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,6,35,357,174
PUSHBUTTON "Cancel",IDCANCEL,261,219,50,14
DEFPUSHBUTTON "OK",IDOK,314,219,50,14
PUSHBUTTON "Select all",IDC_SELECTALL,6,219,50,14
PUSHBUTTON "Unselect all",IDC_DESELECTALL,59,219,50,14
CONTROL "When all are unselected, all CPU Sets may be used",IDC_STATIC,
"Static",SS_SIMPLE | SS_WORDELLIPSIS | WS_GROUP,8,234,154,8
END

IDD_SYSINFO DIALOGEX 0, 0, 423, 247
STYLE DS_SETFONT | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
EXSTYLE WS_EX_APPWINDOW
Expand Down Expand Up @@ -1873,6 +1888,11 @@ BEGIN
BOTTOMMARGIN, 220
END

IDD_CPUSETS, DIALOG
BEGIN
BOTTOMMARGIN, 4
END

IDD_SYSINFO, DIALOG
BEGIN
END
Expand Down Expand Up @@ -2326,6 +2346,4 @@ IDB_SEARCH_ACTIVE_BMP BITMAP "resources\\active_search.bmp"
IDB_SEARCH_INACTIVE_BMP BITMAP "resources\\inactive_search.bmp"

#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
1 change: 1 addition & 0 deletions SystemInformer/SystemInformer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@
<ClCompile Include="chproc.c" />
<ClCompile Include="colmgr.c" />
<ClCompile Include="colsetmgr.c" />
<ClCompile Include="cpuset.c" />
<ClCompile Include="dbgcon.c" />
<ClCompile Include="delayhook.c" />
<ClCompile Include="delayload.c" />
Expand Down
3 changes: 3 additions & 0 deletions SystemInformer/SystemInformer.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@
<ClCompile Include="memsrcht.c">
<Filter>System Informer</Filter>
</ClCompile>
<ClCompile Include="cpuset.c">
<Filter>System Informer</Filter>
</ClCompile>
<ClCompile Include="usrlist.c">
<Filter>System Informer</Filter>
</ClCompile>
Expand Down
Loading
Loading