I'm reading an entry from the registry that comes out something like:
@%SystemRoot%\\System32\\wscsvc.dll,-200
I need to actually load the string from the file.
I found an article which describes how the number on the end behaves (negative == specific resource ID, positive == the nth resource in the file), but I'm confused as to how one might load the resource. The ExtractIcon
function seems to do the resource loading I need, but it returns an HICON
, not a string.
How might I load the string from the file?