I'm writing some Registry search code, which is tedious and boring.
Registry Functions, MSDN...And, because I'm inept,...I'm just thrashing what would otherwise be a functional, if incredibly bloated, program.
So,...I invoke alot. And, I tried to invoke
RegGetValue, only to discover when I tried to compile the executable, that RegGetValue is not prototyped in Advapi32.inc with the rest of the Registry Functions. It's OK,...I can use
RegEnumValue,...it has the same functionality, and, is actually more fun,...
Apparently, RegGetValue was added in Windows Vista. Has anybody else noticed this ? Would anybody here actually use it ?
If I create the prototype in my source, Advapi32.lib still doesn't link to the actual function, does it ?