I am currently working on a DLL
for Windows Explorer
, which provides various features like information and thumbnails for certain types of files. So far it works fine on Windows x64, and I am now working on the 32/64 bits
issue and on the registration process (this process is made by a small standalone program written in C#
).
My understanding is:
- a 64 bits DLL will not work with a 32 bits application and vice versa
- thus the 64 bits DLL will not work for the Open file dialog box of a 32 bits application
- I need to register separately the 32 and 64 bits versions
My questions are:
- are my assumptions correct so far? In particular I am wondering if the browse dialog box opened by an application necessarily has the same bitness as the application (or is the dialog box managed by some Windows 64 process anyway?)
- supposing I have a 32 bits and a 64 bits versions of my DLL, how do I register them from a 64 bits program? ("Ok Windows I'm a 64 bits process, but I'm registering this for 32 bits applications, got it?")
Some pages I have read on the topic:
Windows 64-bit registry v.s. 32-bit registry
http://msdn.microsoft.com/en-us/library/aa384232%28v=VS.85%29.aspx