Using 32-bit shell extensions in Windows 7 64-bit

前端 未结 3 1263
旧时难觅i
旧时难觅i 2020-12-31 18:10

I\'d like to develop a shell extension (context menu handler) compatible with both Windows XP SP2 (32-bit) and Windows 7 64-bit.

Is it possible to run 32-bit shell

3条回答
  •  时光取名叫无心
    2020-12-31 18:34

    Shell extensions are COM components. If you install it as an out-of-process server, Windows (DCOM) should take care of all the 32 <-> 64-bit marshalling.

    The MIDL compiler will then create the 64-bit stub which loads in process.

提交回复
热议问题