Discussion:
I need a list of registry predefined key values
(too old to reply)
T
2020-04-01 05:34:37 UTC
Permalink
Hi All,

Google is failing me.

I need a list of the values that go with these predefined keys:

https://docs.microsoft.com/en-us/windows/win32/sysinfo/predefined-keys

I got this one:

HKEY_LOCAL_MACHINE => 0x80000002;

But don't know the rest

:'(

-T
Felix Palmen
2020-04-01 07:58:00 UTC
Permalink
Post by T
https://docs.microsoft.com/en-us/windows/win32/sysinfo/predefined-keys
<https://github.com/jonasstrandstedt/MinGW/blob/master/MinGW/include/winreg.h#L14>

Not official documentation of course, but they can never be changed
anyways.
--
Dipl.-Inform. Felix Palmen <***@palmen-it.de> ,.//..........
{web} http://palmen-it.de {jabber} [see email] ,//palmen-it.de
{pgp public key} http://palmen-it.de/pub.txt // """""""""""
{pgp fingerprint} A891 3D55 5F2E 3A74 3965 B997 3EF2 8B0A BC02 DA2A
T
2020-04-01 08:32:14 UTC
Permalink
Post by Felix Palmen
Post by T
https://docs.microsoft.com/en-us/windows/win32/sysinfo/predefined-keys
<https://github.com/jonasstrandstedt/MinGW/blob/master/MinGW/include/winreg.h#L14>
Not official documentation of course, but they can never be changed
anyways.
I love it! Thank you!

R.Wieser
2020-04-01 08:23:17 UTC
Permalink
T,
Post by T
https://docs.microsoft.com/en-us/windows/win32/sysinfo/predefined-keys
When looking for the values that go with those named constants I just put
"#define " infront of the word before throwing it into google ( #define
HKEY_LOCAL_MACHINE ). That most always leads to getting a so-called "header
file" being included in the returned results*, in which such name-> value
links are described - most often in a group of similar ones.

*just look for any entry that shows "#define". If you see it more than once
than you have probably hit the motherload. :-)

Like
#5: http://www.dsource.org/projects/tango/ticket/820
#6: http://jeffpar.github.io/kbarchive/kb/258/Q258262/

or even better

#8: https://www.originlab.com/doc/OriginC/ref/Registry-Registry

which shows multiple definitions in its google-displayed result (though this
one and #6 show the same named constants)

Regards,
Rudy Wieser
T
2020-04-01 08:31:33 UTC
Permalink
#8:https://www.originlab.com/doc/OriginC/ref/Registry-Registry
Perfect! Thank you!
Loading...