JCL Help:RegWriteUInt64@DelphiHKEY@string@string@Cardinal@UInt64

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Writes an unsigned 64 bit integer key to the registry.


Pascal

 procedure RegWriteUInt64(const RootKey: DelphiHKEY; const Key: string; const Name: string; Value: UInt64); overload;
procedure RegWriteUInt64(const RootKey: DelphiHKEY; const Key: string; const Name: string; DataType: Cardinal; Value: UInt64); overload;


Parameters

Parameters Description
const RootKey: DelphiHKEY The rootkey which to write to, one of the HKEY_XXX constants.
const Key: string The key (path) where the desired value is located, relative to RootKey.
const Name: string Name of the value to write.
Value: UInt64 Value to write.


Description

RegWriteInteger writes a single unsigned 64 bit integer value to the registry. If the function fails it raises an EJclRegistryError exception. The specified Key must already exist.


See Also

RegWriteInt64 RegWriteBool RegWriteString RegWriteBinary


About

Unit

JclRegistry


Donator

Anonymous


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page