Hi All,
as most of you know, (vl-registry-read) is a good function to get data out of windows registry.
It works nice for string and decimal number data, but not works correct for hexadecimal (or binary) data.
For example, if you issue this:
(vl-registry-read "[b]HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\RecentDocs[/b]" "[b]MRUListEx[/b]")
you will find '(3) or something similar as the result, but the data exported by Windows "REGEDIT" command on my PC is as seen below:
How is it possible to get hexadecimal (binary) data from registry.
(In the following step, I guess I can convert binary data to strings.)
Any help, clues or suggestions are greatly appreciated.