Thread: ISSysUtils
View Single Post
  #1  
Old 12-05-2017, 16:35
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
ISSysUtils

Offers system detection, might work for people with GPU RAM more than 4GB.

Code:
function CPUName:String;
  external 'CPUName@files:ISSysUtils.dll cdecl';
function CPUCores:Integer;
  external 'CPUCores@files:ISSysUtils.dll cdecl';
function CPUThreads:Integer;
  external 'CPUThreads@files:ISSysUtils.dll cdecl';
function CPUSpeed:Integer;
  external 'CPUSpeed@files:ISSysUtils.dll cdecl';
function RAMSize(Physical: Boolean):Integer;
  external 'RAMSize@files:ISSysUtils.dll cdecl';
function GPUName:String;
  external 'GPUName@files:ISSysUtils.dll cdecl';
function GPUSize:Integer;
  external 'GPUSize@files:ISSysUtils.dll cdecl';
function OSName:String;
  external 'OSName@files:ISSysUtils.dll cdecl';
function OSBuild:Integer;
  external 'OSBuild@files:ISSysUtils.dll cdecl';
Attached Files
File Type: 7z ISSysUtils.7z (250.5 KB, 77 views)
Reply With Quote
The Following 6 Users Say Thank You to Razor12911 For This Useful Post:
78372 (12-05-2017), KaktoR (12-05-2017), MacIII (20-05-2017), mausschieber (12-05-2017), Simorq (14-05-2017), unarc 125 (12-05-2017)
Sponsored Links