RegGetValue / Win32
-
Gave a program for a friend to test, as soon as he launched he was notified with this error.
The procedure entry point RegGetValueW could not be located in the dynamic link library ADVAPI32.dll.
I went back to the drawing board only to find out that it is only called after the user has interacted with the program. So it's not something I'm doing during startup of the application! -
Gave a program for a friend to test, as soon as he launched he was notified with this error.
The procedure entry point RegGetValueW could not be located in the dynamic link library ADVAPI32.dll.
I went back to the drawing board only to find out that it is only called after the user has interacted with the program. So it's not something I'm doing during startup of the application!There is a call somewhere in your program to this function. The program loader checks all calls at initialisation to ensure the program can execute correctly. It appears that your friend's PC must have a very old (i.e. non Unicode) version of the system libraries.
Just say 'NO' to evaluated arguments for diadic functions! Ash
-
Gave a program for a friend to test, as soon as he launched he was notified with this error.
The procedure entry point RegGetValueW could not be located in the dynamic link library ADVAPI32.dll.
I went back to the drawing board only to find out that it is only called after the user has interacted with the program. So it's not something I'm doing during startup of the application!The Requirements for RegGetValue are given by MS as: Minimum supported client: Windows Vista, Windows XP Professional x64 Edition Minimum supported server Windows Server 2008, Windows Server 2003 with SP1 Is your test running on one of these?
-
The Requirements for RegGetValue are given by MS as: Minimum supported client: Windows Vista, Windows XP Professional x64 Edition Minimum supported server Windows Server 2008, Windows Server 2003 with SP1 Is your test running on one of these?
I thought does was an old function available since Windows 2000. Any idea how to get a previous older function?
-
I thought does was an old function available since Windows 2000. Any idea how to get a previous older function?
You can use the
RegQueryValueEx
function which is available in older OSs.«_Superman_»
I love work. It gives me something to do between weekends. -
I thought does was an old function available since Windows 2000. Any idea how to get a previous older function?