I'm not really sure how to go about verifying this..this is what I've got so far:
Using regmon, windows does not seem to access the registry at all in relation to this
function
(when called with CSIDL_RESOURCES. The registry is accessed a lot with other values)
I dug through some disassembly of t
Hi,
On Fri, Dec 12, 2003 at 09:06:24PM -0500, Kevin Koltzau wrote:
> I haven't found where the actual translation happens yet, but the directory itself
> seems to be retrieved
> by SHGetSpecialFolderPath with CSIDL_RESOURCES (which is currently flagged FIXME).
> However the current implementatio
Kevin Koltzau <[EMAIL PROTECTED]> writes:
> Would it be acceptable to add a special case for SHGetSpecialFolderPath where
> szDefaultPath is returned
> without attempt to retrieve this value from the registry first?
Only if there is clear evidence that Windows does that too. We must
not add a sp
I haven't found where the actual translation happens yet, but the directory itself
seems to be retrieved
by SHGetSpecialFolderPath with CSIDL_RESOURCES (which is currently flagged FIXME).
However the current implementation of that function requires some registry info in
CSIDL_Data,
but I haven't
Kevin Koltzau <[EMAIL PROTECTED]> writes:
> Many registry keys under XP refer to a %ResourceDir% env that points
> to the path where windows themes are located.
>
> In case any apps refer to this, or if someone loads a registry
> export from XP this should be available in wine also
>
> Interesting