|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Contains some static helper functions for manipulating the MS Windows registry (Only available on Windows, of course!) More...
#include "juce_WindowsRegistry.h"
Public Types | |
| enum | WoW64Mode { WoW64_Default , WoW64_64bit , WoW64_32bit } |
| These values can be used to specify whether the 32- or 64-bit registry should be used. More... | |
Contains some static helper functions for manipulating the MS Windows registry (Only available on Windows, of course!)
@tags{Core}
Definition at line 34 of file juce_WindowsRegistry.h.
These values can be used to specify whether the 32- or 64-bit registry should be used.
When running on a 32-bit OS, there is no 64-bit registry, so the mode will be ignored.
Definition at line 40 of file juce_WindowsRegistry.h.
|
static |
Reads a binary block from the registry.
The path is a string for the entire path of a value in the registry, e.g. "HKEY_CURRENT_USER\Software\foo\bar"
|
static |
Returns a string from the registry.
The path is a string for the entire path of a value in the registry, e.g. "HKEY_CURRENT_USER\Software\foo\bar"
|
static |
Creates a file association in the registry.
This lets you set the executable that should be launched by a given file extension.
| fileExtension | the file extension to associate, including the initial dot, e.g. ".txt" |
| symbolicDescription | a space-free short token to identify the file type |
| fullDescription | a human-readable description of the file type |
| targetExecutable | the executable that should be launched |
| iconResourceNumber | the icon that gets displayed for the file type will be found by looking up this resource number in the executable. Pass 0 here to not use an icon |
| registerForCurrentUserOnly | if false, this will try to register the association for all users (you might not have permission to do this unless running in an installer). If true, it will register the association in HKEY_CURRENT_USER. |
| mode | the WoW64 mode to use for choosing the database |
|
static |
Sets a registry value as a binary block.
This will take care of creating any groups needed to get to the given registry value.
|
static |
Sets a registry value as a string.
This will take care of creating any groups needed to get to the given registry value.
|
static |
Sets a registry value as a DWORD.
This will take care of creating any groups needed to get to the given registry value.
|
static |
Sets a registry value as a QWORD.
This will take care of creating any groups needed to get to the given registry value.