mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:16:04 +00:00
[SYSTEMINFO]
Add System Manufacturer and System Model to resources Convert TABs to spaces in resources Sort strings in resources a bit svn path=/trunk/; revision=51215
This commit is contained in:
parent
0a3b87a1ef
commit
04afecea16
10 changed files with 361 additions and 341 deletions
|
@ -180,7 +180,8 @@ AllSysInfo(VOID)
|
|||
Buf,
|
||||
sizeof(Buf)/sizeof(Buf[0]),
|
||||
Tmp);
|
||||
printf("System Manufacturer:\t\t%s\n", Buf);
|
||||
if (GetOemStrings(IDS_SYS_MANUFACTURER, Msg))
|
||||
printf(Msg, Buf);
|
||||
|
||||
//getting System Model
|
||||
GetPrivateProfileString(TEXT("General"),
|
||||
|
@ -189,7 +190,8 @@ AllSysInfo(VOID)
|
|||
Buf,
|
||||
sizeof(Buf)/sizeof(Buf[0]),
|
||||
Tmp);
|
||||
printf("System Model:\t\t\t%s\n", Buf);
|
||||
if (GetOemStrings(IDS_SYS_MODEL, Msg))
|
||||
printf(Msg, Buf);
|
||||
|
||||
//getting System type
|
||||
switch (SysInfo.wProcessorArchitecture)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue