
26-09-2023, 13:15
|
 |
Registered User
|
|
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 466
Thanked 202 Times in 122 Posts
|
|
Quote:
Originally Posted by BLACKFIRE69
Code:
{ Ini }
function ReadIniStr(const Section, Key, Default, FileName: WideString): WideString;
external 'ReadIniStr@files:FMXInno.dll stdcall delayload';
function WriteIniStr(const Section, Key, Value, FileName: WideString): Boolean;
external 'WriteIniStr@files:FMXInno.dll stdcall delayload';
{ ReadReg }
function pReadRegStr(const RootKey: Integer; const Key, Name: WideString; CreateNew: Boolean): WideString;
external 'pReadRegStr@files:FMXInno.dll stdcall delayload';
function pReadRegInt(const RootKey: Integer; const Key, Name: WideString; CreateNew: Boolean): Integer;
external 'pReadRegInt@files:FMXInno.dll stdcall delayload';
function pReadRegBool(const RootKey: Integer; const Key, Name: WideString; CreateNew: Boolean): Boolean;
external 'pReadRegBool@files:FMXInno.dll stdcall delayload';
function pReadRegDouble(const RootKey: Integer; const Key, Name: WideString; CreateNew: Boolean): Double;
external 'pReadRegDouble@files:FMXInno.dll stdcall delayload';
|
Thank you for the replay.
|