|
-
August 24th, 1999, 11:27 AM
#1
How to retrieve machine dependent data?
Does any body know if there are functions to retrieve the following
machine dependent data?
Machine Type
Physical RAM Size
ROM Size
ROM Version
Or similar machine dependent data
Best regards
PaLu
-
August 24th, 1999, 02:10 PM
#2
Re: How to retrieve machine dependent data?
Hi PaLu,
if you mean the CPU type with machine type, this can be found with GetSystemInfo. Don't know how to get the other information.
Martin
-
August 24th, 1999, 02:32 PM
#3
Re: How to retrieve machine dependent data?
To get RAM info:
MEMORYSTATUS ms;
ms.dwLength = sizeof(ms);
GlobalMemoryStatus(&ms);
ms.dwTotalPhys <= Total Physical RAM
ms.dwAvailPhys <= Total Available RAM
.
.
.
and there are other members
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|