现在的位置: 首页 > 综合 > 正文

Getting System BIOS Date

2013年10月09日 ⁄ 综合 ⁄ 共 308字 ⁄ 字号 评论关闭
 

Getting System BIOS Date

Here's one, courtesy of one of our readers, Rubem Rocha.

{================================ The following function will retrieve the BIOS date, without built-in assembler or API calls, just Delphi native resources. ================================} function BiosDate: String; begin result := string(pchar(ptr($FFFF5))); end;

抱歉!评论已关闭.