Definition at line 39 of file CRegistry.hpp.
Registry enumeration, check specifics for system.
Definition at line 49 of file CRegistry.hpp.
| static bool Exponent::Host::CRegistry::createRegistryEntry | ( | const ERegistry | registry, | |
| const CString & | registryKey | |||
| ) | [static] |
Add to the registry.. WARNING! WARNING! WARNING! Could potentially be very damaging to system
| registry | The registry to add to | |
| registryKey | the registryKey (eg Exponent\GFlux) |
| bool | True if added properly, false otherwise |
| static bool Exponent::Host::CRegistry::deleteRegistryEntry | ( | const ERegistry | registry, | |
| const CString & | registryKey, | |||
| const CString & | key | |||
| ) | [static] |
Delete from the registry.. WARNING! WARNING! WARNING! Could potentially be very damaging to system
| registry | The registry to delete from | |
| registryKey | the registryKey (eg Exponent\GFlux) | |
| key | the key to delete (eg DataPath) |
| bool | True if deleted properly, false otherwise |
| static TCountedPointerArray<CRegistryInfo> Exponent::Host::CRegistry::enumerateRegistryKeyValues | ( | const ERegistry | registry, | |
| const CString & | registryKey | |||
| ) | [static] |
Enumerate a registry key
| registry | The registry to enumerate | |
| registryKey | The root key |
| TCountedPointerArray<CRegistryInfo> | The array of CRegistryInfo |
| static bool Exponent::Host::CRegistry::readFromRegistry | ( | const ERegistry | registry, | |
| const CString & | registryKey, | |||
| const CString & | key, | |||
| CSystemString & | input | |||
| ) | [static] |
Read from the registry
| registry | The registry to delete from | |
| registryKey | the registryKey (eg Exponent\GFlux) | |
| key | the key to read (eg DataPath) | |
| input | On return is filled with the registry value |
| bool | True if read properly, false otherwise |
| static bool Exponent::Host::CRegistry::writeToRegistry | ( | const ERegistry | registry, | |
| const CString & | registryKey, | |||
| const CString & | key, | |||
| const CString & | value | |||
| ) | [static] |
Write to the registry
| registry | The registry to delete from | |
| registryKey | the registryKey (eg Exponent\GFlux) | |
| key | the key to write (eg DataPath) | |
| value | The value to give the key |
| bool | True if written properly, false otherwise |